@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo", sans-serif;
  color: black;
  line-height: 20px;
  overflow-x: hidden;
  background-color: #f5f5f5;
}

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

/* Header */
header {
  padding: 12px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: black;
  display: inline-block;
  cursor: pointer;
}

ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

ul a:hover {
  color: #ffa050;
}

li img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 12px 0 16px;
}

li {
  list-style: none;
  display: inline-block;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border: 2px solid black;
  background-color: white;
  border-radius: 16px;
  position: relative;
  z-index: 100000000;
}

.logo a {
  text-transform: capitalize;
}

.logo span {
  font-size: 22.5px;
  line-height: 18px;
  font-weight: 800;
}

.logo span.review {
  color: #ff6900;
}

.subscribe-now {
  padding: 8px 16px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid black;
  font-size: 14px;
  border-radius: 25px;
  background-color: #ffd15b;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.subscribe-now:hover {
  transform: translate(4px, 4px);
}

#menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  font-size: 24px;
  color: black;
  border: 1px solid black;
  background-color: white;
  border-radius: 3px;
  padding: 8px 12px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.menu-btn:hover {
  transform: translateY(-4px);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 120vh;
  background-color: white;
  border-left: 2px solid black;
  padding: 18px 20px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.sidebar .sidebar-top {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.sidebar h2 {
  text-transform: uppercase;
}

.sidebar-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}

.sidebar-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  transition: all 0.2s ease-in-out;
}

.sidebar ul li {
  display: inline-block;
}

.sidebar a {
  text-decoration: none;
  text-transform: uppercase;
  color: black;
  font-weight: 700;
}

.sidebar li:hover {
  color: #ff6900;
  transform: translateY(-2px);
}

.sidebar .subscribe-noww {
  display: inline-block;
  margin: 10px 14px;
  padding: 8px 16px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  border: 4px solid black;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  font-size: 14px;
  border-radius: 2px;
  background-color: #ffd15b;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.fa-rocket {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-right: 5px;
}

.sidebar .subscribe-noww:hover {
  transform: translateY(-4px);
}

.close-btn {
  font-size: 32px;
  cursor: pointer;
  border: 1px solid black;
  background-color: white;
  border-radius: 5px;
  padding: 6px 10px;
  margin: 7px;
  cursor: pointer;
}

.close-btn:hover {
  color: rgb(255, 122, 80);
  background-color: rgb(226, 192, 192);
}

#menu-toggle:checked ~ .sidebar {
  right: 0;
}

nav ul,
.subscribe-now {
  display: none;
}

.menu-btn {
  display: block;
}

/* Hero Section */

.hero {
  background-color: #fff085;
  border: 2px solid black;
  padding: 110px 0 64px 0;
  position: relative;
}

.hero .box1 {
  background-color: rgba(0, 0, 0, 0.09);
  position: absolute;
  top: 30px;
  left: 30px;
  width: 96px;
  height: 96px;
  transform: rotate(12deg);
}

.hero .box2 {
  background-color: oklch(63.7% 0.237 25.331);
  opacity: 0.1;
  position: absolute;
  top: 120px;
  right: 60px;
  width: 72px;
  height: 72px;
  transform: rotate(-45deg);
}

.hero .box3 {
  display: none;
}

.hero .hero-section {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 50px;
  position: relative;
  z-index: 0.5;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.button {
  padding: 6px 12px;
  background-color: black;
  margin-bottom: 18px;
  font-size: 10.5px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  box-shadow: 5px 5px rgba(0, 0, 0, 1);
}

.trending-now {
  transform: rotate(-3deg);
}

.hero .hero-content h2 {
  font-size: 54px;
  line-height: 67.5px;
  margin-bottom: 24px;
  font-weight: 900;
  text-shadow: black 4px 4px 0;
}

.hero .hero-content p {
  padding: 12px;
  margin-bottom: 24px;
  border: 1px solid black;
  background-color: white;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  box-shadow: 5px 5px rgba(0, 0, 0, 1);
}

.hero .hero-img {
  position: relative;
  width: 100%;
  height: 300px;
}

.hero .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid black;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transition: all 0.3s ease-in-out;
}

.hero .hero-img img:hover {
  transform: rotate(2deg) translateX(-3px) translateY(-3px);
}

.hero .hero-img .featured-on-img {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 6px 12px;
  background-color: #fb2c36;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
  color: white;
  border: 2px solid black;
  transform: rotate(10deg);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
}

.thoughts {
  color: #e7000b;
}

.bold-ideas {
  color: #155dfc;
}

.buttons {
  display: flex;
  gap: 16px;
}

.btn img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  vertical-align: middle;
}

.btn-wrapper {
  position: relative;
  display: inline-block;
}

.btn {
  position: relative;
  padding: 12px 24px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: 4px solid black;
  background: white;
  transition: transform 0.1s ease-in-out;
}

.btn-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 7px 7px 0px black;
  z-index: 0;
}

.btn:hover {
  transform: translate(4px, 4px);
}

.start-reading {
  background-color: black;
  color: white;
}

.watch-intro {
  background-color: white;
  color: black;
}

/* latest-articles section */

.latest-articles {
  padding: 60px 0;
  border: 2px solid black;
}

.latest-articles-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 18px;
  align-items: flex-start;
}

.latest-articles-content .left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-of-content {
  margin-bottom: 36px;
  align-self: flex-start;
}

.header-of-content h2 {
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  font-weight: 900;
}

.fresh-content {
  display: none;
}

.article-wrapper {
  position: relative;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 24px;
  background-color: white;
  color: black;
  border: 4px solid black;
  transition: all 0.2s ease-in-out;
}

.article-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  box-shadow: 10px 10px 0px black;
  z-index: -1;
}

.article:hover {
  transform: translate(-4px, -4px);
}

.article-img {
  position: relative;
  background: #f5f5f5;
  width: 130px;
  height: 100px;
}

.article-img img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  border: 2px solid black;
  display: block;
}

.btn-btn {
  position: absolute;
  top: -7px;
  right: -6px;
  padding: 3px 6px;
  font-size: 9px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid black;
  color: white;
}

.new-btn {
  background-color: #fb2c36;
  transform: rotate(15deg);
}

.hot-btn {
  background-color: #2b7fff;
  transform: rotate(-10deg);
}

.viral-btn {
  background-color: #ad46ff;
  transform: rotate(15deg);
}

.btn-type {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: capitalize;
  border: 2px solid black;
  color: black;
}

.tech-btn {
  background-color: #ffdf20;
  transform: rotate(-2deg);
}

.design-btn {
  background-color: #7bf1a8;
  transform: rotate(2deg);
}

.culture-btn {
  background-color: #fda5d5;
  transform: rotate(2deg);
}

.article-content h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 9px;
}

.article-content:hover .h1 {
  color: #e7000b;
}

.article-content:hover .h2 {
  color: #155dfc;
}

.article-content:hover .h3 {
  color: #9810fa;
}

.article-content p {
  font-size: 13.5px;
  line-height: 21.9375px;
  margin-bottom: 12px;
}

.info {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.info img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  vertical-align: middle;
}

.info span {
  font-size: 10.5px;
  line-height: 15px;
  font-weight: 600;
  vertical-align: middle;
  text-transform: uppercase;
}

.info .red {
  color: #fb2c36;
}

.load-more {
  background-color: black;
  color: white;
}

.latest-articles-content .right-column {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 100%;
}

.latest-articles-content .right-column .sidebar-right {
  padding: 24px;
  background-color: white;
  border: 4px solid black;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
}

.latest-articles-content .right-column .sidebar-right h4 {
  font-size: 22.5px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}

.latest-articles-content .right-column .number {
  font-size: 27px;
  font-weight: 900;
  line-height: 30px;
  margin-right: 12px;
}

.c1 {
  color: red;
}

.hover01:hover h5 {
  color: red;
}

.c2 {
  color: #155dfc;
}

.hover02:hover h5 {
  color: #155dfc;
}

.c3 {
  color: #ad46ff;
}

.hover03:hover h5 {
  color: #ad46ff;
}

.latest-articles-content .right-column .sidebar-right .list {
  margin-bottom: 18px;
  cursor: pointer;
}

.detail {
  display: flex;
  flex-direction: column;
}

.detail h5 {
  font-size: 13.5px;
  line-height: 21px;
  font-weight: 700;
}

.detail p {
  font-size: 10.5px;
  line-height: 15px;
  margin-top: 3px;
  color: #525252;
}

.category {
  padding: 9px 12px;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  color: black;
  border: 1px solid black;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.tech {
  background-color: #fef9c2;
}

.tech:hover {
  background-color: #ffdf20;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transform: translate(-4px, -4px);
}

.design {
  background-color: #dbfce7;
}

.design:hover {
  background-color: #7bf1a8;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transform: translate(-4px, -4px);
}

.culture {
  background-color: #fce7f3;
}

.culture:hover {
  background-color: #fda5d5;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transform: translate(-4px, -4px);
}

.option {
  background-color: #dbeafe;
}

.option:hover {
  background-color: #8ec5ff;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transform: translate(-4px, -4px);
}

.tutorials {
  background-color: #f3e8ff;
}

.tutorials:hover {
  background-color: #dab2ff;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transform: translate(-4px, -4px);
}

/* Authors Section */

.authors {
  padding: 60px 0;
  background-color: #ffd230;
  border: 2px solid black;
  position: relative;
}

.author-content {
  padding: 0 18px;
}

.authors::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.09);
  transform: rotate(45deg);
}

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

.title h3 {
  font-size: 32px;
  line-height: 36px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}

.title p {
  font-size: 15px;
  line-height: 21px;
  font-weight: 600;
  color: #525252;
}

.title p::after {
  content: "";
  display: block;
  width: 120px;
  height: 10px;
  margin: 16px auto 0;
  background-color: black;
}

.author-cards {
  display: grid;
  grid-template-rows: repeat(3, fr);
  gap: 20px;
}

.author-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background-color: white;
  border: 5px solid black;
  box-shadow: 4px 4px 0px black;
  transition: all 0.2s ease-in-out;
}

.btn-btn-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 3px 6px;
  font-size: 9px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid black;
  color: white;
}

.founder-btn {
  background-color: #fb2c36;
  transform: rotate(15deg);
}

.lead-btn {
  background-color: #155dfc;
  transform: rotate(-15deg);
}

.veral-btn {
  background-color: #9810fa;
  transform: rotate(15deg);
}

.author-card .author-img img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  margin-bottom: 18px;
  border: 5px solid black;
}

.author-card h4 {
  font-size: 22.5px;
  line-height: 27px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.author-card .author-info span {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  color: #525252;
  font-weight: 700;
  margin-bottom: 12px;
}

.author-card .author-info p {
  font-size: 12px;
  line-height: 19.5px;
  margin-bottom: 18px;
}

.author-card .socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.author-card .socials .con {
  background-color: black;
  border: 2px solid black;
  padding: 4px 6px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.con:hover {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0px black;
}

.author-card .socials .con.twitter:hover {
  background-color: #1da1f2;
}

.author-card .socials .con.linked-in:hover {
  background-color: #0a66c2;
}

.author-card .socials .con.instagram:hover {
  background-color: #e60076;
}

.author-card .socials img {
  width: 20px;
  height: 20px;
}

.card1 {
  background-color: #fef9c2;
}

.card2 {
  background-color: #dbfce7;
}

.card3 {
  background-color: #fce7f3;
}

.author-card:hover .author1 {
  color: #e7000b;
}

.author-card:hover .author2 {
  color: #155dfc;
}

.author-card:hover .author3 {
  color: #9810fa;
}

.author-card:hover {
  transform: translate(-4px, -4px);
}

/* communtiy Section */

.community {
  border: 2px solid black;
  padding: 60px 0;
}

.community-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.community-content {
  padding: 0 18px;
}

.community-container .community-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.community-container .community-left h4 {
  font-size: 27px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 24px;
}

.community-container .community-left p {
  padding: 12px;
  margin-bottom: 24px;
  border: 1px solid black;
  background-color: white;
  font-size: 15px;
  line-height: 24.375px;
  font-weight: 600;
  box-shadow: 5px 5px rgba(0, 0, 0, 1);
}

.list {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 32px;
}

.list-img {
  width: 40px;
  height: 35px;
  border: 2px solid black;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.check {
  background-color: #fb2c36;
}

.discord {
  background-color: #2b7fff;
}

.star {
  background-color: #ad46ff;
}

.pen {
  background-color: #00c951;
}

.list img {
  width: 20px;
  height: 20px;
}

.list span {
  vertical-align: middle;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 21px;
}

.community-container .community-left button img {
  width: 23px;
  height: 23px;
}

.join-now {
  font-size: 18px;
  padding: 18px 20px;
  background-color: black;
  color: white;
}

.community-container .community-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: white;
  border: 5px solid black;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transition: all 0.2s ease-in-out;
}

.community-container .community-right h5 {
  font-size: 22.5px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 24px;
}

.community-container .community-right .review {
  padding: 12px 12px 12px 18px;
  margin-bottom: 24px;
  border: 2px solid black;
}

.community-container .community-right .review p {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 21.9375px;
}

.community-container .community-right .review .user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.community-container .community-right .review .user-info .user-img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
  border: 2px solid black;
}

.community-container .community-right .review .user-info .user-img img {
  width: 100%;
  height: 100%;
}

.community-container .community-right .review .user-info .user-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.community-container .community-right .review .user-info span {
  font-size: 10.5px;
  color: #525252;
  line-height: 15px;
}

.community-container .community-right .review .user-info .user-data span.name {
  color: black;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 21px;
}

.color1 {
  background-color: #fef2f2;
}

.color2 {
  background-color: #eff6ff;
}

.color3 {
  background-color: #faf5ff;
}

/* footer section */

.footer {
  background-color: black;
  color: white;
  padding: 60px 0;
}

.footer-container {
  display: grid;
  grid-template-rows: 3;
  padding: 0px 18px;
  gap: 20px;
  position: relative;
}

.footer-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  margin-top: 48px;
}

.footer-about .logo-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 32px;
}

.logo-img {
  width: 40px;
  height: 40px;
  background-color: white;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-about .logo-name img {
  width: 20px;
  height: 20px;
}

.footer-about .logo-name span {
  font-size: 22.5px;
  font-weight: 900;
  line-height: 36px;
  text-transform: uppercase;
}

.footer-about p {
  font-size: 13.5px;
  line-height: 21.9375px;
}

.footer-container h4 {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 24px;
}

.footer-categories {
  display: flex;
  flex-direction: column;
  width: 20%;
}

.footer-categories ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
}

.footer-categories ul li a {
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 21px;
}

.footer a:hover {
  color: #ffdf20;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.footer-newsletter .form {
  display: flex;
  flex-direction: column;
  margin: 18px 0 32px 0;
}

.footer-newsletter .form input {
  padding: 12px;
  border: 1px solid white;
  background-color: transparent;
  margin-bottom: 12px;
  color: white;
  font-size: 13.5px;
  line-height: 21px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-newsletter .form input::placeholder {
  color: #a1a1a1;
  font-size: 13.5px;
  line-height: 21px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-newsletter .form input:focus {
  border-color: #ffdf20;
  outline: none;
}

.footer-newsletter .form button {
  padding: 12px 0;
  background-color: #ffdf20;
  border: 4px solid black;
  font-size: 13.5px;
  line-height: 21px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset -6px -6px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}

.footer-newsletter .form button:hover {
  transform: translate(4px, 4px);
  background-color: #fdc700;
}

.footer-copyright {
  padding: 24px 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  font-size: 13.5px;
  margin-bottom: 9px;
  line-height: 28px;
  font-weight: 600;
}

.footer-copyright ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 16px;
}

.footer-copyright ul a {
  color: white;
  font-size: 12px;
  line-height: 28px;
  font-weight: 600;
}
