body {
  margin: 0;
  font-family: "Exo", sans-serif;
}

body::selection {
  background-color: #ffd15b;
  color: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --main-color: #fff085;
  --border: 0.125rem solid #000;
  scroll-behavior: smooth;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 95%;
  margin: auto;
}

a {
  text-decoration: none;
  color: #000;
}

/* navbar  */

.navbar {
  padding: 0.3125rem 0;
  position: fixed;
  top: 0.9375rem;
  right: 0;
  left: 0;
  margin: 0 0.9375rem;
  border: var(--border);
  border-radius: 0.9375rem;
  background-color: white;
  z-index: 1000;
}

.navbar .nav-content > a {
  font-size: 1.875rem;
  font-weight: 800;
  text-decoration: none;
  color: #ff6900;
}

.navbar .nav-content > a .f-half {
  color: #111111;
}

.navbar .nav-content ul {
  list-style: none;
  display: flex;
  gap: 1.125rem;
}

.navbar .nav-content ul .star {
  color: #d1d5dc;
  font-size: 0.625rem;
  align-self: center;
}

.navbar .nav-content ul li a {
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.1s;
}

.navbar .nav-content ul li a:hover {
  color: #ff7a50;
}

.navbar .nav-content button {
  padding: 0.5625rem 0.9375rem;
  background-color: #ffd15b;
  font-weight: 700;
  font-size: 0.875rem;
  border: var(--border);
  border-radius: 62.4375rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.navbar .nav-content button:hover {
  transform: translate(0.25rem, 0.25rem);
}

.navbar .nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 40rem) {
  .navbar {
    padding: 0.9375rem 0.625rem;
  }
  .navbar .nav-content ul li a,
  .navbar .nav-content ul .star,
  .navbar .nav-content button {
    display: none;
  }
}
@media (min-width: 40rem) and (max-width: 48rem) {
  .navbar {
    padding: 0.9375rem 0.625rem;
  }
  .navbar .nav-content ul li a,
  .navbar .nav-content ul .star,
  .navbar .nav-content button {
    display: none;
  }
}

/* hero-section  */

.hero-section {
  background-color: var(--main-color);
  border: var(--border);
  border-bottom: 0.25rem solid black;
  min-height: 100vh;
  padding-top: 9.375rem;
}

.hero-section .element-shadow::after {
  content: "";
  width: 8.125rem;
  height: 6.25rem;
  background-color: black;
  position: absolute;
  top: 12%;
  left: 3%;
  opacity: 0.1;
  transform: skew(-12deg);
}

.hero-section .info {
  background-color: #000;
  width: fit-content;
  padding: 0.6875rem 1.0625rem;
  transform: skew(5deg, -2deg);
  box-shadow: 0.1875rem 0.1875rem black;
}

.hero-section .info span {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
}

.hero-text h1 .main-head {
  font-size: 4.5rem;
  font-weight: 900;
  text-shadow: 0.1875rem 0.1875rem #2f2e2e;
}

.hero-text h1 .head2 {
  color: #e7000b;
}

.hero-text h1 .head3 {
  color: #155dfc;
}

.hero-text p {
  padding: 0.875rem 1.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #fff;
  border: var(--border);
  box-shadow: 0.1875rem 0.1875rem #000;
  position: relative;
  z-index: 999;
}

.hero-text .p-shadow::after {
  content: "";
  width: 6.25rem;
  height: 6.25rem;
  background-color: #434343;
  position: absolute;
  bottom: -25%;
  left: 35%;
  transform: rotate(130deg);
  opacity: 0.1;
}

.hero-text button {
  padding: 1.25rem 1.875rem;
  border: 0.25rem solid black;
  margin: 0.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 999;
  box-shadow: 0.375rem 0.375rem #000;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.hero-text .butt-1 {
  background-color: #000;
  color: #fff;
}

.hero-text button:hover {
  transform: translate(6px, 6px);
  box-shadow: 0 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4.0625rem;
}

.hero-img {
  width: 45%;
  height: 22.5rem;
  background-image: url(../imgs/hero-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(2deg) translate(0, 0);
  border: 0.25rem solid #000;
  box-shadow: 0.375rem 0.375rem #000;
  position: relative;
  z-index: 10;
  transition: transform 0.3s;
}

.hero-img:hover {
  transform: rotate(2deg) translate(-2px, -2px);
}

.img-title {
  background-color: #fb2c36;
  padding: 0.625rem 0.9375rem;
  font-weight: 700;
  color: white;
  border: var(--border);
  box-shadow: 0.1875rem 0.1875rem #000;
  position: absolute;
  top: -9%;
  right: -3%;
  transform: rotate(12deg);
  z-index: 999;
}

.img-shadow::after {
  content: "";
  width: 6.25rem;
  height: 6.25rem;
  background-color: #fb2c36;
  position: absolute;
  top: 35%;
  right: 8%;
  transform: rotate(130deg);
  opacity: 0.1;
}

@media (max-width: 40.3125rem) {
  .hero-content .hero-text {
    width: 100%;
    align-self: center;
  }

  .hero-section .info {
    margin-left: 1.25rem;
  }

  .hero-content .hero-text h1 .main-head {
    font-size: 3.75rem;
    margin-left: 1.25rem;
  }

  .hero-text p {
    font-size: 1.3125rem;
    margin: 0 1.25rem;
  }

  .hero-text .butt-group {
    display: flex;
    padding: 0.625rem 0.625rem;
  }
  .hero-text button {
    font-size: 1.1875rem;
  }

  .hero-content .hero-img {
    width: 100%;
    transform: rotate(0);
  }
}
@media (min-width: 40.3125rem) and (max-width: 56.25rem) {
  .hero-content .hero-text {
    width: 100%;
    align-self: center;
  }

  .hero-content .hero-img {
    width: 100%;
    transform: rotate(0);
  }
}

/* Articles  */

.articles {
  padding: 5rem 0;
  border: var(--border);
  border-bottom: 0.25rem solid black;
}

.articles .articles-content .article-title {
  width: calc(70% - 0.625rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.articles .articles-content .article-title h2 {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
}

.articles .articles-content .article-title .inf {
  background-color: #000;
  color: white;
  width: fit-content;
  padding: 0.6875rem 1.0625rem;
  transform: skew(-5deg, 2deg) translate(14.375rem);
  box-shadow: 0.1875rem 0.1875rem black;
  font-weight: 700;
}

.item {
  padding: 2.5rem;
  margin-top: 3.125rem;
  position: relative;
  display: flex;
  align-items: center;
  border: 0.25rem solid black;
  gap: 1.25rem;
  box-shadow: 0.25rem 0.25rem black;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 0.375rem 0.375rem black;
}

.item-1:hover h3 {
  color: #fb2c36;
}

.item .item-img {
  align-self: flex-start;
  width: 25%;
  border: var(--border);
}

.item-1 .item-img span {
  position: absolute;
  top: 8%;
  left: 22.5%;
  background-color: #fb2c36;
  padding: 5px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border: var(--border);
  transform: rotate(10deg);
}

.item-1 .tech {
  background-color: #ffdf20;
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border: var(--border);
  color: black;
  box-shadow: 0.1875rem 0.1875rem black;
  transform: rotate(-2deg);
}

.item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.2s;
}

.item p {
  font-size: 1.125rem;
}

.item .info-1,
.item .info-2 {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
}

.item .info-2 .span-2 {
  padding-left: 2.0625rem;
  color: #e7000b;
}

.item .info-1 .span-2,
.item .info-2 .span-2 {
  transform: translateX(10rem);
}

.item-2,
.item-3 {
  margin-top: 1.875rem;
}

.item-2:hover h3 {
  color: #155dfc;
}

.item-2 .item-img span {
  position: absolute;
  top: 8%;
  left: 22.5%;
  background-color: #155dfc;
  padding: 5px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border: var(--border);
  transform: rotate(-10deg);
}

.item-2 .tech {
  background-color: #7bf1a8;
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border: var(--border);
  color: black;
  box-shadow: 0.1875rem 0.1875rem black;
  transform: rotate(2deg);
}
.item-3:hover h3 {
  color: #ad46ff;
}

.item-3 .item-img span {
  position: absolute;
  top: 10%;
  left: 20%;
  background-color: #ad46ff;
  padding: 5px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border: var(--border);
  transform: rotate(50deg);
}

.item-3 .tech {
  background-color: #fda5d5;
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border: var(--border);
  color: black;
  box-shadow: 0.1875rem 0.1875rem black;
  transform: rotate(-2deg);
}
.item-3 .item-img {
  align-self: flex-start;
  width: 40%;
  border: var(--border);
}
.item-3 .info-2 .span-2 {
  padding-left: 0.9375rem;
  color: #e7000b;
}

.article-butt {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.article-butt button {
  margin-top: 3.125rem;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  box-shadow: 0.375rem.375rem #000;
  border: 0.25rem solid black;
  transition: all 0.2s;
}

.article-butt button:hover {
  transform: translate(0.375rem, 0.375rem);
  box-shadow: 0 0;
}

.trending {
  width: calc(30% - 0.625rem);
  margin-top: 1.25rem;
  position: sticky;
  top: 1.875rem;
}

.trend-1 {
  padding: 1.875rem 2.5rem;
  border: 0.25rem solid black;
  box-shadow: 0.375rem 0.375rem;
}

.trend-1 h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin: 0;
}

.trend-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  cursor: pointer;
}

.trend-title span {
  font-size: 2.25rem;
  font-weight: 900;
  padding-right: 0.9375rem;
  padding-top: 0.4375rem;
}

.trend-title .trend-content h4 {
  margin-bottom: 0;
  margin-top: 0.75rem;
  transition: color 0.2s;
}

.trend-title .trend-content p {
  margin-top: 0.3125rem;
}

.trend-title-1:hover h4 {
  color: #fb2c36;
}

.trend-title-1 span {
  color: #fb2c36;
}

.trend-title-2:hover h4 {
  color: #2b7fff;
}

.trend-title-2 span {
  color: #2b7fff;
}

.trend-title-3:hover h4 {
  color: #ad46ff;
}

.trend-title-3 span {
  color: #ad46ff;
}

.articles-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.categories {
  padding: 1.875rem 2.5rem;
  margin-top: 1.875rem;
  border: 0.25rem solid black;
  box-shadow: 0.375rem 0.375rem;
}

.categories h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.category-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  font-weight: 700;
  gap: 0.75rem;
}

.category-content span {
  padding: 0.875rem 1.125rem;
  border: var(--border);
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    background-color 0.2s;
  cursor: pointer;
}

.category-content span:hover {
  box-shadow: 0.375rem 0.375rem #000;
  transform: translate(-0.125rem, -0.125rem);
}

.category-content .tech-cat {
  background-color: #fef9c2;
}

.category-content .tech-cat:hover {
  background-color: #ffdf20;
}

.category-content .des-cat {
  background-color: #dbfce7;
}

.category-content .des-cat:hover {
  background-color: #7bf1a8;
}
.category-content .cul-cat {
  background-color: #fce7f3;
}

.category-content .cul-cat:hover {
  background-color: #fda5d5;
}
.category-content .opi-cat {
  background-color: #dbeafe;
}

.category-content .opi-cat:hover {
  background-color: #8ec5ff;
}
.category-content .tuto-cat {
  background-color: #f3e8ff;
}

.category-content .tuto-cat:hover {
  background-color: #dab2ff;
}

@media (max-width: 40.3125rem) {
  .article-title {
    min-width: 100%;
    padding: 0 0.625rem;
  }

  .articles .articles-content .article-title h2 {
    font-size: 2.1875rem;
    margin: 0;
  }

  .item .info-1,
  .item .info-2 {
    font-size: 0.75rem;
    font-weight: 600;
    flex-direction: column;
  }

  .item h3 {
    font-size: 1.125rem;
  }
  .item p {
    font-size: 0.875rem;
  }
  .item .tech {
    font-size: 0.625rem;
  }

  .item .info-2 .span-2 {
    padding-left: 0;
  }

  .item .info-1 .span-2,
  .item .info-2 .span-2 {
    transform: translateX(0);
  }

  .item {
    flex-direction: column;
    padding: 1.5625rem;
  }

  .article-butt button {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
  }

  .article-title .item .item-img {
    width: 50%;
  }

  .item .item-img span {
    top: 5%;
    left: 38%;
    font-size: 0.625rem;
  }

  .article-title .item .item-content {
    width: 100%;
  }

  .article-title > span {
    display: none;
  }

  .trending {
    width: 100%;
  }
}

@media (min-width: 40.3125rem) and (max-width: 56.25rem) {
  .article-title {
    min-width: 100%;
    padding: 0 0.625rem;
  }

  .article-title .item-1 {
    width: 100%;
  }

  .articles .articles-content .article-title h2 {
    font-size: 2.1875rem;
    margin: 0;
  }

  .item .info-1,
  .item .info-2 {
    font-size: 0.75rem;
    font-weight: 600;
    flex-direction: column;
  }

  .item h3 {
    font-size: 1.5625rem;
  }
  .item p {
    font-size: 1.125rem;
  }
  .item .tech {
    font-size: 0.625rem;
  }

  .item .info-2 .span-2 {
    padding-left: 0;
  }

  .item .info-1 .span-2,
  .item .info-2 .span-2 {
    transform: translate(12.5rem, -0.75rem);
  }

  .item {
    flex-direction: column;
    padding: 1.5625rem;
  }

  .article-butt button {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
  }

  .article-title .item .item-img {
    width: 50%;
  }

  .item .item-img span {
    top: 4%;
    left: 45%;
    font-size: 0.625rem;
  }

  .article-title .item .item-content {
    width: 100%;
  }

  .article-title > span {
    display: none;
  }

  .trending {
    width: 100%;
  }
}

/* Meet the Author */

.meet-author {
  background-color: #ffd230;
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  border: var(--border);
  border-bottom: 0.25rem solid black;
}

.meet-author .meet-title {
  text-align: center;
}

.meet-author .meet-title h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 1.125rem;
  margin-bottom: 0;
  position: relative;
}

.meet-author .meet-title h2::after {
  content: "";
  width: 150px;
  height: 150px;
  background-color: #000;
  position: absolute;
  top: -45%;
  right: 0.5%;
  transform: rotate(135deg);
  opacity: 0.1;
}

.meet-author .meet-title p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #525252;
  margin-top: 0.625rem;
  position: relative;
}

.meet-author .meet-title p::after {
  content: "";
  width: 10%;
  height: 0.5rem;
  background-color: #000;
  position: absolute;
  bottom: -90%;
  left: 45%;
  transform: rotate(1deg);
}

.meet-content {
  padding-top: 3.75rem;
}

.object {
  width: calc((100% - 2rem) / 2);
  background-color: #fef9c2;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0.625rem;
  border: 0.25rem solid black;
  position: relative;
  box-shadow: 0.375rem 0.375rem #000;
  transition: all 0.2s;
}

.object:hover {
  transform: translate(-0.125rem, -0.125rem);
}

.object-1:hover h3 {
  color: #fb2c36;
}

.object .obj-img {
  width: 22%;
  border: 0.25rem solid black;
  margin: auto;
}

.object h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-top: 1.375rem;
  margin-bottom: 0;
}

.object .p-title {
  font-weight: 700;
  color: #525252;
  margin-top: 0.625rem;
}

.object .p-desc {
  margin-bottom: 25px;
}

.object ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9375rem;
  font-size: 18px;
  margin-right: 3.125rem;
}

.object ul li {
  background-color: #000;
  border: var(--border);
  padding: 0.625rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.object ul li:hover {
  transform: translate(-0.1875rem, -0.1875rem);
  box-shadow: 0.375rem 0.375rem #000;
}

.object ul .twitter:hover {
  background-color: #1da1f2;
}
.object ul .linkedin:hover {
  background-color: #155dfc;
}
.object ul .instagram:hover {
  background-color: #e60076;
}

.object ul li i {
  color: white;
}

.object-1 span {
  background-color: #fb2c36;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border: var(--border);
  position: absolute;
  top: 6%;
  right: 3.5%;
  transform: rotate(12deg);
  color: white;
}

.object-2 {
  background-color: #dbfce7;
}

.object-2 span {
  background-color: #2b7fff;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border: var(--border);
  position: absolute;
  top: 6%;
  right: 3.5%;
  transform: rotate(-12deg);
  color: white;
}

.object-2:hover h3 {
  color: #2b7fff;
}

.object-3 {
  background-color: #fce7f3;
  position: relative;
  z-index: 999;
}

.object-3 span {
  background-color: #ad46ff;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border: var(--border);
  position: absolute;
  top: 6%;
  right: 3.5%;
  transform: rotate(40deg);
  color: white;
}

.object-3:hover h3 {
  color: #9810fa;
}

.meet-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}

.obj-shadow::after {
  content: "";
  width: 120px;
  height: 120px;
  background-color: #fb2c36;
  position: absolute;
  bottom: -4%;
  left: 1%;
  transform: rotate(-12deg);
  opacity: 0.1;
}

@media (max-width: 40.3125rem) {
  .object {
    width: 100%;
    margin: 0 0.625rem;
    padding-right: 20px;
    padding-left: 20px;
  }

  .meet-author .meet-title h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .meet-author .meet-title p {
    font-size: 1rem;
  }

  .meet-author .meet-title p::after {
    width: 25%;
    height: 0.375rem;
    left: 35%;
  }

  .object h3 {
    font-size: 1.5625rem;
  }

  .object .p-title,
  .object .p-desc {
    font-size: 0.75rem;
  }
}

@media (min-width: 40.3125rem) and (max-width: 56.25rem) {
  .object {
    width: 100%;
    margin: 0 0.625rem;
    padding-right: 20px;
    padding-left: 20px;
  }

  .meet-author .meet-title h2 {
    font-size: 3.25rem;
  }

  .meet-author .meet-title p {
    font-size: 1.5625rem;
  }

  .meet-author .meet-title p::after {
    width: 18%;
    height: 0.625rem;
  }

  .object h3 {
    font-size: 2.1875rem;
  }

  .object .p-title,
  .object .p-desc {
    font-size: 20px;
  }
}

/* JOIN THE REBELLION  */

.join-rebellion {
  padding: 3.125rem 0;
  padding-bottom: 5rem;
  border: var(--border);
}

.join-rebellion .join-title {
  text-align: center;
}

.join-rebellion .join-title h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.join-rebellion .join-title p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #525252;
  margin-top: 0.5rem;
  position: relative;
}

.join-rebellion .join-title p::after {
  content: "";
  width: 11%;
  height: 30%;
  background-color: #000;
  position: absolute;
  bottom: -90%;
  left: 44.5%;
  transform: rotate(-1deg);
}

.join-content .part-1 {
  width: calc(50% - 1.5625rem);
}

.join-content .part-1 h3 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 2.5rem;
}

.join-content .part-1 p {
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2.0625rem;
  padding: 0.9375rem 1.5625rem;
  padding-left: 1rem;
  border: var(--border);
  box-shadow: 0.1875rem.1875rem #000;
}

.join-content .span-part-1 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.join-content .part-1 .sec {
  display: flex;
  align-items: flex-start;
}

.join-content .part-1 .sec .span-part-1 {
  font-size: 1.125rem;
  font-weight: 600;
}

.join-content .part-1 .span-part-1 span {
  padding-top: 1.5625rem;
}

.join-content .part-1 .span-part-1 .week {
  padding-top: 1.25rem;
}

.join-content .part-1 .span-part-1 .sub {
  padding-top: 2.1875rem;
}

.join-content .part-1 .sec .shape-part-1 div {
  width: 3rem;
  height: 3rem;
  margin-top: 0.625rem;
  margin-bottom: 1.5625rem;
  margin-right: 1rem;
  margin-left: 0;
  border: var(--border);
}

.join-content .part-1 .sec .shape-part-1 .check {
  background-color: #fb2c36;
}
.join-content .part-1 .sec .shape-part-1 .discord {
  background-color: #2b7fff;
}
.join-content .part-1 .sec .shape-part-1 .star {
  background-color: #ad46ff;
}
.join-content .part-1 .sec .shape-part-1 .pen {
  background-color: #00c950;
}

.join-content .part-1 .sec .shape-part-1 div i {
  font-size: 18px;
  color: white;
  padding-left: 12px;
  padding-top: 12px;
}

.part-1 button {
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  background-color: black;
  border: var(--border);
  box-shadow: 0.375rem 0.375rem #000;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 25px;
}

.part-1 button:hover {
  transform: translate(0.375rem, 0.375rem);
  box-shadow: 0 0;
}

.join-content .part-2 {
  width: calc(50% - 1.5625rem);
  padding: 2.5rem;
  border: 0.25rem solid black;
  box-shadow: 0.375rem 0.375rem #000;
}

.join-content .part-2 h4 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 2rem;
}

.obj {
  border: var(--border);
  padding: 1rem;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.obj-1 {
  background-color: #fef2f2;
}

.obj p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8125rem;
}

.obj .text span {
  font-size: 1.125rem;
  font-weight: 700;
}

.obj p {
  margin-top: 0;
}

.obj .text p {
  font-size: 0.875rem;
  color: #525252;
  margin-top: 0;
  margin-bottom: 0;
}

.obj .image {
  width: 10%;
  border: var(--border);
}

.obj .tex-img {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.obj-2 {
  background-color: #eff6ff;
}

.obj-3 {
  background-color: #faf5ff;
}

.join-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 4.375rem;
  gap: 3.125rem;
}

@media (max-width: 40.3125rem) {
  .join-content .part-1 {
    width: 100%;
  }

  .join-content .part-2 {
    width: 100%;
  }

  .join-rebellion .join-title h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .join-rebellion .join-title p {
    font-size: 0.9375rem;
  }
  .join-rebellion .join-title p::after {
    width: 25%;
    left: 38%;
  }

  .join-rebellion .join-content h3 {
    font-size: 1.875rem;
    line-height: 2.1875rem;
  }

  .join-rebellion .join-content p {
    font-size: 1rem;
  }

  .join-rebellion .join-content .sec .span-part-1 {
    font-size: 0.875rem;
  }

  .join-rebellion .join-content .sec .span-part-1 .sub {
    padding-top: 1.375rem;
  }

  .join-content .part-1 button {
    font-size: 1.125rem;
  }

  .join-content .part-2 h4 {
    font-size: 1.5625rem;
    line-height: 2.1875rem;
  }

  .join-content .part-2 .obj p {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }

  .join-content .part-2 .obj .image {
    width: 15%;
  }

  .obj .text span {
    font-size: 0.875rem;
  }

  .join-content .obj .text p {
    font-size: 0.625rem;
  }
}

@media (min-width: 40.3125rem) and (max-width: 56.25rem) {
  .join-content .part-1 {
    width: 100%;
  }

  .join-content .part-2 {
    width: 100%;
  }

  .join-rebellion .join-title p::after {
    width: 15%;
    left: 44%;
  }

  .join-rebellion .join-content p {
    font-size: 1.4375rem;
  }

  .join-rebellion .join-content .sec .span-part-1 {
    padding-top: 0;
    font-size: 1.25rem;
  }
  .join-rebellion .join-content .sec .span-part-1 .early {
    padding-top: 2.1875rem;
  }

  .join-rebellion .join-content .sec .span-part-1 .sub {
    padding-top: 2.1875rem;
  }

  .join-rebellion .join-content .sec .span-part-1 .exc {
    padding-top: 2.5rem;
  }

  .join-content .part-2 h4 {
    font-size: 2.1875rem;
  }

  .join-content .part-2 .obj p {
    font-size: 1.375rem;
    line-height: 2.1875rem;
  }

  .join-content .obj .text p {
    font-size: 1rem;
  }
}

/* Footer  */

.footer {
  background-color: #000;
  padding: 80px 0;
}

.footer-content {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-content .info,
.footer-content .newsletter {
  width: 38%;
}

.footer-content .footer-links {
  width: 15%;
}

.footer-content .info .footer-title .info-shape {
  width: 4rem;
  height: 4rem;
  background-color: white;
}

.footer-content .info .footer-title .info-shape i {
  color: #000;
  padding: 1.1875rem;
  font-size: 1.5625rem;
}

.footer-content .info .footer-title h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 900;
}

.footer-content .info p {
  font-size: 1.125rem;
  line-height: 1.8125rem;
}

.footer-content .footer-links h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  margin-top: 0;
}

.footer-content .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-content .footer-links ul li {
  margin-bottom: 1rem;
}

.footer-content .footer-links ul li a {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-content .footer-links ul li a:hover {
  color: #ffdf20;
}

.footer-content .newsletter h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 2rem;
}

.footer-content .newsletter p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-content .newsletter .input-email input {
  width: 28.375rem;
  height: 3.8125rem;
  background-color: transparent;
  border: 0.0625rem solid #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding-left: 0.9375rem;
  margin-bottom: 1rem;
}

.footer-content .newsletter .input-email input:focus {
  outline: none;
  border: 1px solid #ffdf20;
}

.footer-content .newsletter button {
  width: 28.125rem;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-top: 0;
  border-left: 0;
  border-right: 0.25rem solid #ca9f00;
  border-bottom: 0.25rem solid #ca9f00;
  background-color: #ffdf20;
  cursor: pointer;
  transition: all 0.2s;
}

.footer-content .newsletter button:hover {
  transform: translate(0.25rem, 0.25rem);
  background-color: #fdc700;
}

.footer hr {
  height: 0.25rem;
  background-color: #fff;
}

.rights {
  color: white;
  padding-top: 2rem;
  text-align: center;
}

.rights p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.rights ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.rights ul li a {
  color: white;
  font-weight: 600;
  transition: color 0.2s;
}

.rights ul li a:hover {
  color: #ffdf20;
}

@media (max-width: 40.3125rem) {
  .footer {
    padding: 3.75rem 0.625rem;
  }

  .footer-content .info,
  .footer-content .footer-links,
  .footer-content .newsletter {
    width: 100%;
  }

  .footer-content .info .footer-title h2 {
    font-size: 1.375rem;
  }

  .footer-content .info .footer-title .info-shape {
    width: 2.8125rem;
    height: 2.8125rem;
  }

  .footer-content .info .footer-title .info-shape i {
    font-size: 18px;
    padding: 14px;
  }

  .footer-content .info p {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }

  .footer-content .footer-links h3 {
    padding-top: 3.125rem;
    font-size: 1.125rem;
    margin-bottom: 1.5625rem;
  }

  .footer-content .footer-links ul li {
    margin-bottom: 0.75rem;
  }

  .footer-content .footer-links ul li a {
    font-size: 0.875rem;
  }

  .footer-content .newsletter h3 {
    font-size: 1.125rem;
    padding-top: 1.5625rem;
    padding-bottom: 0;
  }
  .footer-content .newsletter p {
    font-size: 0.875rem;
  }

  .footer-content .newsletter .input-email input {
    width: 100%;
    height: 3.125rem;
    font-size: 0.875rem;
  }

  .footer-content .newsletter button {
    width: 99%;
    height: 3.125rem;
    font-size: 0.875rem;
  }

  .rights p {
    font-size: 0.875rem;
    text-align: left;
  }

  .rights ul li a {
    font-size: 0.75rem;
  }
}

@media (min-width: 40.3125rem) and (max-width: 56.25rem) {
  .footer {
    padding: 3.75rem 0.625rem;
  }

  .footer-content .info {
    width: 100%;
  }

  .footer-content .newsletter {
    width: 75%;
    margin-top: 1.5rem;
  }

  .footer-content .info p {
    font-size: 1.375rem;
    padding-bottom: 2rem;
  }

  .footer-content .footer-links h3 {
    padding-top: 3.125rem;
    font-size: 1.5625rem;
    margin-bottom: 1.5625rem;
  }

  .footer-content .newsletter h3 {
    font-size: 1.5625rem;
    padding-top: 1.5625rem;
    padding-bottom: 0;
  }
  .footer-content .newsletter p {
    font-size: 1.375rem;
  }

  .footer-content .newsletter .input-email input {
    width: 100%;
  }

  .footer-content .newsletter button {
    width: 99%;
  }

  .rights p {
    font-size: 1.25rem;
  }

  .rights ul li a {
    font-size: 1.125rem;
  }
}
