/* ^ =========> Global Styles */

body {
  font-family: "Exo", sans-serif;
  margin: 0px;
}

::selection {
  background-color: #ffd15b;
  color: black;
}

*,
::after,
::before {
  box-sizing: border-box;
}
a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

img {
  max-width: 100%;
}

.container {
  width: 95%;
  margin: auto;
}

/* & Header Section Styles */
.header {
  background-color: oklch(94.5% 0.129 101.54);
  display: flow-root;
  padding: 0px 0px 40px;
}

.header .container {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
}

.header .container .content {
  margin-top: 25px;
}

.navbar {
  background-color: white;
  border: 2px solid black;
  border-radius: 15px;
  padding: 10px 0px;
  margin: 15px auto;
  position: fixed;
  left: 0px;
  right: 0px;
  z-index: 1;
  width: 95%;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .container .subscribe {
  display: none;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid black;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #ffd15b;
  transition: translate 150ms;
}

.navbar .container .subscribe:hover {
  translate: 3px 3px;
}

.navbar .container .links {
  display: flex;
  gap: 30px;
}

.navbar .container .links a {
  color: black;
  display: none;
  font-size: 14px;
  font-weight: 500;
}

.navbar .container .links i {
  font-size: 12px;
  padding-right: 20px;
  color: #ccc;
}

.navbar .container .links a:hover {
  color: rgba(255, 105, 0, 0.8);
}

.navbar h1 {
  margin: 0px;
  font-size: 20px;
}

.navbar h1 span {
  color: oklch(70.5% 0.213 47.604);
}

.navbar .menu {
  font-size: 22px;
  border: 2px solid black;
  border-radius: 5px;
  padding: 10px 20px;
  box-shadow: 3px 3px black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms;
}

.navbar i:hover {
  transform: translateY(-3px);
}

.content h2 {
  font-size: 12px;
  color: white;
  background-color: black;
  padding: 10px;
  width: fit-content;
  box-shadow: 3px 3px #000;
}

.content h3,
p {
  margin-bottom: 20px;
}

.content h3 span {
  font-weight: 700;
  font-size: 55px;
  text-shadow: 3px 3px #000000b7;
  display: block;
  margin-top: 0px;
  line-height: 1.3;
}

.content h3 span:nth-of-type(2) {
  color: oklch(57.7% 0.245 27.325);
}

.content h3 span:nth-of-type(3) {
  color: oklch(54.6% 0.245 262.881);
}

.content p {
  font-size: 18px;
  font-weight: 500;
  border: 2px solid black;
  padding: 10px;
  box-shadow: 3px 3px black;
  background-color: white;
}

.content .but {
  display: flex;
  margin: 30px 0px 40px;
  gap: 5px;
}

.content button {
  font-size: 15px;
  font-weight: 600;
  border: 3px solid black;
  padding: 15px 22px;
  margin-right: 10px;
  text-transform: uppercase;
  box-shadow: 5px 5px black;
  line-height: 1.5;
  transition:
    translate 300ms,
    box-shadow 300ms;
}

.content button:hover {
  translate: 5px 5px;
  box-shadow: none;
}

.content button:nth-of-type(1) {
  background-color: black;
  color: white;
}

.content button:nth-of-type(2) {
  background-color: white;
}

.content button img {
  width: 15px;
  padding-right: 5px;
}

.content button i {
  padding-right: 5px;
}

.header .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 4px solid black;
  box-shadow: 5px 5px black;
  transition: translate 300ms;
}

.header .image img:hover {
  translate: -4px -4px;
}

.header .image {
  position: relative;
}

.header .featured {
  position: absolute;
  top: -10px;
  right: -10px;
  transform: rotate(15deg);
  background-color: oklch(63.7% 0.237 25.331);
  color: white;
  border: 2px solid black;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 2px 2px black;
}

/* & LATEST ARTICLES Section Styles */
.latest-articles {
  border-top: 4px solid black;
  border-bottom: 4px solid black;
  padding: 40px 0px;
  background-color: #f5f5f5;
}

.latest-articles .container {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.latest-articles .container .all-cards {
  width: 100%;
}

.latest-articles h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  /* margin: auto; */
  width: fit-content;
}

.latest-articles .title span {
  background-color: black;
  color: white;
  border: 2px solid black;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 14px;
  box-shadow: 3px 3px black;
  display: none;
}

.latest-articles .title {
  margin-bottom: 10px;
}

.latest-articles .all-cards .card {
  border: 3px solid black;
  padding: 24px;
  box-shadow: 4px 4px black;
  background-color: white;
  transition: translate 300ms;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.latest-articles .all-cards .card:hover {
  translate: -3px -3px;
}

.latest-articles .all-cards .card .img img {
  width: 140px;
  border: 2px solid black;
}

.latest-articles .all-cards .card .img {
  position: relative;
  width: fit-content;
}

.latest-articles .all-cards .card .img span {
  position: absolute;
  top: -8px;
  right: -8px;
  transform: rotate(15deg);
  border: 2px solid black;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: 600;
  color: white;
}

.latest-articles .all-cards .card-1 .img span {
  background-color: oklch(63.7% 0.237 25.331);
}

.latest-articles .all-cards .card-2 .img span {
  background-color: oklch(62.3% 0.214 259.815);
}

.latest-articles .all-cards .card-3 .img span {
  background-color: oklch(62.7% 0.265 303.9);
}

.latest-articles .all-cards .card h3 {
  font-size: 10px;
  padding: 4px 10px;
  width: fit-content;
  border: 2px solid black;
  font-weight: 700;
  box-shadow: 3px 3px black;
  margin-bottom: 15px;
}

.latest-articles .all-cards .card-1 h3 {
  background-color: oklch(90.5% 0.182 98.111);
}

.latest-articles .all-cards .card-2 h3 {
  background-color: oklch(87.1% 0.15 154.449);
}

.latest-articles .all-cards .card-3 h3 {
  background-color: oklch(82.3% 0.12 346.018);
}

.latest-articles .all-cards .card h4 {
  font-size: 20px;
  margin: 2px 0px 6px;
  font-weight: 700;
  line-height: 1.2;
}

.latest-articles .all-cards .card-1:hover h4 {
  color: oklch(63.7% 0.237 25.331);
}

.latest-articles .all-cards .card-2:hover h4 {
  color: oklch(62.3% 0.214 259.815);
}

.latest-articles .all-cards .card-3:hover h4 {
  color: oklch(62.7% 0.265 303.9);
}

.latest-articles .all-cards .card p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.latest-articles .all-cards .card ul li {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.latest-articles .all-cards .card ul li span {
  display: block;
}

.latest-articles .all-cards .card ul li i {
  margin-right: 5px;
}

.latest-articles .all-cards .card ul .heart {
  color: oklch(63.7% 0.237 25.331);
}

.butt {
  background-color: black;
  text-transform: uppercase;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: 3px solid black;
  padding: 13px 30px;
  margin: auto;
  display: block;
  box-shadow: 5px 5px black;
  transition:
    translate 300ms,
    box-shadow 300ms;
}

.butt:hover {
  translate: 5px 5px;
  box-shadow: none;
}

.butt .fa-rocket {
  padding-right: 5px;
}

.latest-articles .cards .card {
  background-color: white;
  padding: 22px;
  border: 4px solid black;
  box-shadow: 5px 5px black;
  margin-top: 25px;
}

.latest-articles .cards .card h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 0px 0px 16px;
}

.latest-articles .cards .card .num {
  display: flex;
  gap: 10px;
}

.latest-articles .cards .card .num span {
  align-self: flex-start;
  font-size: 27px;
  font-weight: 800;
}

.latest-articles .cards .card .one span {
  color: oklch(63.7% 0.237 25.331);
}
.latest-articles .cards .card .two span {
  color: oklch(62.3% 0.214 259.815);
}
.latest-articles .cards .card .three span {
  color: oklch(62.7% 0.265 303.9);
}

.latest-articles .cards .card .num div h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0px;
}

.latest-articles .cards .card .one div h4:hover {
  color: oklch(63.7% 0.237 25.331);
}
.latest-articles .cards .card .two div h4:hover {
  color: oklch(62.3% 0.214 259.815);
}
.latest-articles .cards .card .three div h4:hover {
  color: oklch(62.7% 0.265 303.9);
}

.latest-articles .cards .card .num div p {
  font-size: 11px;
  margin-top: 3px;
  color: oklch(43.9% 0 0);
}

.latest-articles .cards .categories .category {
  border: 2px solid black;
  font-size: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.latest-articles .cards .categories .category-1 {
  background-color: oklch(97.3% 0.071 103.193);
  transition:
    transform 300ms,
    box-shadow 300ms;
}
.latest-articles .cards .categories .category-2 {
  background-color: oklch(96.2% 0.044 156.743);
  transition:
    transform 300ms,
    box-shadow 300ms;
}
.latest-articles .cards .categories .category-3 {
  background-color: oklch(94.8% 0.028 342.258);
  transition:
    transform 300ms,
    box-shadow 300ms;
}
.latest-articles .cards .categories .category-4 {
  background-color: oklch(93.2% 0.032 255.585);
  transition:
    transform 300ms,
    box-shadow 300ms;
}
.latest-articles .cards .categories .category-5 {
  background-color: oklch(94.6% 0.033 307.174);
  transition:
    transform 300ms,
    box-shadow 300ms;
}

.latest-articles .cards .categories .category-1:hover {
  transform: translate(-3px, -3px);
  background-color: yellow;
  box-shadow: 3px 3px black;
}
.latest-articles .cards .categories .category-2:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px black;
  background-color: oklch(87.1% 0.15 154.449);
}
.latest-articles .cards .categories .category-3:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px black;
  background-color: oklch(82.3% 0.12 346.018);
}
.latest-articles .cards .categories .category-4:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px black;
  background-color: oklch(80.9% 0.105 251.813);
}
.latest-articles .cards .categories .category-5:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px black;
  background-color: oklch(82.7% 0.119 306.383);
}

/* &=================>> Meet The Authors Section Styles*/
.author {
  padding: 90px 0px;
  background-color: oklch(85.2% 0.199 91.936);
}

.author .container {
  position: relative;
}

.title-2 {
  text-align: center;
  margin-bottom: 45px;
}

.title-2::after {
  content: "";
  width: 110px;
  height: 6px;
  background-color: #000;
  margin: 10px auto;
  display: block;
}

.title-2 h2 {
  font-size: 36px;
  font-weight: 900;
  margin: 0px 0px 10px;
  line-height: 1;
}

.title-2 p {
  font-size: 15px;
  color: oklch(43.9% 0 0);
  font-weight: 600;
  margin-block: 0px;
}

.layer {
  width: 120px;
  height: 120px;
  background-color: rgb(0, 0, 0, 0.1);
  position: absolute;
  top: -15px;
  right: 15px;
  transform: rotate(45deg);
}

.author .all-authors {
  display: flex;
  flex-direction: column;
}

.all-authors .author-card {
  width: 100%;
  transition: translate 300ms;
}

.all-authors .author-card:hover {
  translate: -4px -4px;
}

.all-authors .author-card .inner {
  border: 4px solid black;
  box-shadow: 5px 5px black;
  padding: 22px;
  position: relative;
  text-align: center;
}

.all-authors .author-card img {
  width: 100px;
  border: 4px solid black;
  margin: auto;
}

.author-card .inner span {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border: 2px solid black;
  color: white;
}

.auther-1 .inner span {
  rotate: 12deg;
  background-color: oklch(63.7% 0.237 25.331);
}
.auther-2 .inner span {
  rotate: -12deg;
  background-color: oklch(62.3% 0.214 259.815);
}
.auther-3 .inner span {
  rotate: 45deg;
  background-color: oklch(62.7% 0.265 303.9);
}

.all-authors .author-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 12px 0px 6px;
}

.all-authors .author-card h4 {
  font-size: 13px;
  color: oklch(43.9% 0 0);
  font-weight: 700;
  margin: 0px 0px 12px;
}

.all-authors .author-card p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.all-authors .author-card .icons i {
  font-size: 18px;
  margin-inline: 5px;
  width: 40px;
  color: white;
  background-color: black;
  padding: 10px;
  transition:
    translate 300ms,
    box-shadow 300ms;
}

.all-authors .author-card .icons i:hover {
  translate: -5px -5px;
  box-shadow: 5px 5px black;
  border: 2px solid black;
}

.all-authors .author-card .icons .fa-twitter:hover {
  background-color: oklch(62.3% 0.214 259.815);
}
.all-authors .author-card .icons .fa-linkedin:hover {
  background-color: oklch(54.6% 0.245 262.881);
}
.all-authors .author-card .icons .fa-instagram:hover {
  background-color: oklch(59.2% 0.249 0.584);
}

.all-authors .auther-1,
.auther-2 {
  margin-bottom: 20px;
}

.all-authors .auther-1 .inner {
  background-color: oklch(97.3% 0.071 103.193);
}

.all-authors .auther-2 .inner {
  background-color: oklch(96.2% 0.044 156.743);
}

.all-authors .auther-3 .inner {
  background-color: oklch(94.8% 0.028 342.258);
}

.all-authors .auther-1:hover h3 {
  color: oklch(63.7% 0.237 25.331);
}
.all-authors .auther-2:hover h3 {
  color: oklch(62.3% 0.214 259.815);
}
.all-authors .auther-3:hover h3 {
  color: oklch(62.7% 0.265 303.9);
}

/* ^=================>> JOIN THE REBELLION Section Styles */
.join-the-rebellion {
  border-top: 4px solid black;
  padding: 80px 0px;
  background-color: #f5f5f5;
}

.join-the-rebellion .title-2 {
  padding-inline: 10px;
  margin-bottom: 45px;
}

.join-the-rebellion .join {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.join-the-rebellion .join-content h3 {
  font-size: 27px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.join-the-rebellion .join-content p {
  font-size: 15px;
  background-color: white;
  border: 2px solid black;
  box-shadow: 3px 3px black;
  padding: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
}

.join-the-rebellion .join-content .all .one,
.two,
.three,
.four {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.join-the-rebellion .join-content .all div i {
  color: white;
  width: 40px;
  height: 40px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 2px solid black;
  margin: 0px;
}

.join-the-rebellion .join-content .all .fa-check {
  background-color: oklch(63.7% 0.237 25.331);
}
.join-the-rebellion .join-content .all .fa-discord {
  background-color: oklch(62.3% 0.214 259.815);
}
.join-the-rebellion .join-content .all .fa-star {
  background-color: oklch(62.7% 0.265 303.9);
}
.join-the-rebellion .join-content .all .fa-pen {
  background-color: oklch(72.3% 0.219 149.579);
}

.join-the-rebellion .join-content .all div span {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.7;
  max-width: 280px;
}

.join-the-rebellion .join-content .butt {
  display: inline;
  margin-top: 20px;
  font-size: 16px;
}

.join-the-rebellion .all-card {
  border: 3px solid black;
  box-shadow: 5px 5px black;
  margin-top: 50px;
  padding: 30px;
}

.join-the-rebellion .all-card h3 {
  font-size: 23px;
  font-weight: 800;
  margin: 0px 0px 20px;
  line-height: 1.2;
}

.join-the-rebellion .all-card .card {
  border: 2px solid black;
  padding: 12px 12px 12px 15px;
  margin-bottom: 22px;
}

.join-the-rebellion .all-card .card p {
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 600;
  margin: 0px 0px 13px;
}

.join-the-rebellion .all-card .card img {
  width: 40px;
  border: 2px solid black;
}

.join-the-rebellion .all-card .img {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
}

.join-the-rebellion .all-card .card h4 {
  font-size: 14px;
  margin: 0px;
}

.join-the-rebellion .all-card .card span {
  font-size: 11px;
  color: oklch(43.9% 0 0);
  font-weight: 500;
}

.join-the-rebellion .all-card .card-1 {
  background-color: oklch(97.1% 0.013 17.38);
}
.join-the-rebellion .all-card .card-2 {
  background-color: oklch(93.2% 0.032 255.585);
}
.join-the-rebellion .all-card .card-3 {
  background-color: oklch(94.6% 0.033 307.174);
}

/* & Footer Section Styles */
.footer {
  background-color: #000;
  padding: 50px 0px;
  color: white;
}

.footer-title div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer-title h2 {
  font-size: 23px;
  margin: 5px 0px 0px;
  font-weight: 800;
}

.footer-title i {
  color: #000;
  background-color: white;
  width: 40px;
  height: 40px;
  font-size: 16px;
  padding: 10px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-title p {
  font-size: 13.5px;
  margin-bottom: 40px;
}

.footer .categories-newsletter h3 {
  font-size: 19px;
  margin: 30px 0px 24px;
  font-weight: 800;
}

.footer .categories-newsletter ul li a {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer .categories-newsletter ul li a:hover,
.footer .last span a:hover {
  color: oklch(90.5% 0.182 98.111);
}

.footer .newsletter p {
  font-size: 13.5px;
  margin-bottom: 20px;
  width: fit-content;
}

.footer .newsletter .but {
  display: flex;
  flex-direction: column;
  background-color: #000;
  gap: 20px;
}

.footer .newsletter .but button {
  font-size: 13.5px;
  padding: 12px;
  outline: none;
  text-transform: uppercase;
  font-weight: 550;
}

.footer .newsletter button:nth-of-type(1) {
  text-align: left;
  background-color: #000;
  color: #ccc;
  border: 1px solid white;
}

.footer .newsletter button:nth-of-type(2) {
  background-color: oklch(90.5% 0.182 98.111);
  color: #000;
  transition: translate 300ms;
}

.footer .newsletter button:nth-of-type(2):hover {
  translate: 3px 3px;
  background-color: oklch(85.2% 0.199 91.936);
}

.footer .last p {
  font-size: 13.5px;
  width: fit-content;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.footer .last::before {
  content: "";
  display: block;
  margin: 40px 0px 30px;
  width: 100%;
  height: 4px;
  background-color: white;
}

.footer .last span {
  margin-right: 20px;
}

.footer .last span a {
  font-size: 11px;
  max-width: 70px;
  font-weight: 700;
}
