/* general style start */

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: "Exo", sans-serif;
}

:root {
  --selection-bgColor: #ffd15b;
  --text-black-color: #000;
  --text-white-color: #fff;
  --text-brand-color: #111;
  --text-h1-Red-color: #e7000b;
  --text-h1-Blue-color: #155dfc;
  --text-logoSpan-orange-color: #ff6900;
  --text-logoli-orange-color: #ff7a50;
  --header-bgcolor: #fff085;
  --boxshadow-small: 3px 3px 0 var(--text-black-color);
  --boxshadow-big: 5px 5px 0 var(--text-black-color);
}

::-moz-selection {
  background-color: var(--selection-bgColor);
  color: var(--text-brand-color);
}

::selection {
  background-color: var(--selection-bgColor);
  color: var(--text-brand-color);
}

img {
  width: 100%;
}

.container {
  width: 95%;
  margin: 0 auto;
}

.pop-btn__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pop-btn {
  padding: 12px 36px;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: all 0.18s ease;
  -o-transition: all 0.18s ease;
  transition: all 0.18s ease;
  border: 4px solid var(--text-black-color);
  -webkit-transform: translate(-5px, -5px);
  -ms-transform: translate(-5px, -5px);
  transform: translate(-5px, -5px);
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--text-black-color);
}

.pop-btn svg {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.pop-btn:hover {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-box-shadow: 0 0 0px #000;
  box-shadow: 0 0 0px #000;
}

h1 {
  font-size: 54px;
  width: 90%;
  text-shadow: 3px 3px #33301b;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  z-index: 3;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h2 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
}

/* general style end */

/* header section start  */

header {
  background-color: var(--header-bgcolor);
  padding-top: 93px;
  border-bottom: 3px solid;
  position: relative;
}

header::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background-color: #e5d877;
  top: 40px;
  left: 40px;
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}
header::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #ffdc7d;
  top: 155px;
  right: 26px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .container {
  padding-block: 60px;
  position: relative;
}

nav {
  position: relative;
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 16px;
  background-color: var(--text-white-color);
  border: 2px solid;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  text-transform: capitalize;
}

.nav-logo span:nth-child(2) {
  color: var(--text-logoSpan-orange-color);
}

.nav-list {
  display: none;
}

.nav-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.nav-hidden {
  opacity: 0;
  position: absolute;
  top: 110%;
  right: -400px;
  background-color: white;
  width: 250px;
  border: 4px solid black;
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
  z-index: 500;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  padding: 24px;
  text-transform: uppercase;
}

.nav-hidden .pop-btn {
  font-size: 14px;

  font-weight: 700;
  padding: 9px 0px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--selection-bgColor);
  margin-top: 32px;
}

.nav-hidden p {
  font-size: 18px;
  font-weight: 900;
}
.nav-hidden__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 10px;
  border-top: 2px solid var(--text-black-color);
  border-bottom: 2px solid var(--text-black-color);
}

.nav-hidden .btn-close {
  width: 40px;
  height: 40px;
  border: 2px solid var(--text-black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nav-hidden .btn-close svg {
  width: 20px;
}
.nav-hidden__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.nav-hidden__items li {
  font-size: 15px;
  font-weight: 700;
}

.list-icon-small {
  border: 2px solid var(--text-black-color);
  border-radius: 5px;
  -webkit-box-shadow: var(--boxshadow-small);
  box-shadow: var(--boxshadow-small);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.list-icon-small svg {
  width: 20px;
}
.list-icon-small:hover + .nav-hidden {
  opacity: 1;
  right: 0;
}

.nav-list__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
}

.nav-list__items li a {
  color: var(--text-black-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-list__items li a:hover {
  color: var(--text-logoli-orange-color);
  cursor: pointer;
}

.list-icon {
  width: 12.5px;
}

.nav-action {
  display: none;
}

.nav-action__btn {
  padding: 8px 16px;
  background-color: var(--selection-bgColor);
  border: 2px solid;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-action__btn:hover {
  -webkit-transform: translate(3px, 3px);
  -ms-transform: translate(3px, 3px);
  transform: translate(3px, 3px);
  -webkit-box-shadow: 0 0 0px var(--text-black-color);
  box-shadow: 0 0 0px var(--text-black-color);
}

.nav-action__btn a:link,
.nav-action__btn a:visited {
  color: var(--text-black-color);
}

.header__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 45px;
}

.header__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.trending-icon {
  background-color: var(--text-black-color);
  color: var(--text-white-color);
  -webkit-box-shadow: var(--boxshadow-small);
  box-shadow: var(--boxshadow-small);
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid var(--text-black-color);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.red-color {
  color: var(--text-h1-Red-color);
}

.blue-color {
  color: var(--text-h1-Blue-color);
}

.header__content__discribtion {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  background-color: var(--text-white-color);
  -webkit-box-shadow: var(--boxshadow-small);
  box-shadow: var(--boxshadow-small);
  padding: 16px;
  border: 2px solid;
  margin-block: 30px;
  text-transform: capitalize;
}

.header__content__btns .pop-btn__container {
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header__content__btns .pop-btn {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__content__btns .pop-btn:first-child {
  color: var(--text-white-color);
  background-color: var(--text-black-color);
}

.header__img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__img-container {
  height: 60vh;
  position: relative;
}

.header__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 4px solid;
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.header__img img:hover {
  -webkit-transform: translate(-3px, -3px);
  -ms-transform: translate(-3px, -3px);
  transform: translate(-3px, -3px);
}

.header__img figcaption {
  position: absolute;
  top: -10px;
  right: 0px;
  color: var(--text-white-color);
  -webkit-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
  z-index: 4;
  padding: 8px 16px;
  background-color: var(--text-h1-Red-color);
  -webkit-box-shadow: var(--boxshadow-small);
  box-shadow: var(--boxshadow-small);
  font-size: 16px;
  font-weight: 700;
  border: 2px solid var(--text-black-color);
  text-transform: uppercase;
  line-height: 1.5;
}
/* header section end  */

/* latest articles start  */

.latest-articles {
  border-bottom: 3px solid;
}

.latest-articles .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  padding-block: 80px;
}

.latest-articles .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 48px;
}

.latest-articles .title span {
  display: none;
  font-size: 16px;
  color: var(--text-white-color);
  background-color: var(--text-black-color);
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid var(--text-black-color);
  -webkit-box-shadow: var(--boxshadow-small);
  box-shadow: var(--boxshadow-small);
  -webkit-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  font-weight: 700;
}

.article-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding: 24px;
  border: 4px solid;
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.article-card:nth-of-type(2) {
  margin-block: 30px;
}

.article-card:hover {
  -webkit-transform: translate(-2px, -2px);
  -ms-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
  -webkit-box-shadow: 7px 7px 0px #000;
  box-shadow: 7px 7px 0px #000;
}

.img-position {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 5px;
}

.article-card__img figure img {
  width: 160px;
  height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 2px solid;
}

.article-card__img figure span {
  color: var(--text-white-color);
  display: inline-block;
  position: absolute;
  right: -5px;
  top: -3px;
  background-color: var(--text-h1-Red-color);
  -webkit-transform: rotate(12deg);
  -ms-transform: rotate(12deg);
  transform: rotate(12deg);
  font-size: 12px;
  padding: 4px 8px;
  border: 2px solid var(--text-black-color);
  font-weight: 700;
  text-transform: uppercase;
}

.article-card:nth-of-type(2) .article-card__img figure span {
  background-color: var(--text-h1-Blue-color);
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
}

.article-card:nth-of-type(3) .article-card__img figure span {
  background-color: #9810fa;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.article-card:nth-of-type(2) .article-card__description span {
  background-color: #7bf1a8;
  -webkit-transform: rotate(1deg);
  -ms-transform: rotate(1deg);
  transform: rotate(1deg);
}

.article-card:nth-of-type(3) .article-card__description span {
  background-color: #fda5d5;
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

.article-card__description span {
  display: inline-block;
  -webkit-transform: rotate(-1deg);
  -ms-transform: rotate(-1deg);
  transform: rotate(-1deg);
  padding: 4px 12px;
  margin-bottom: 12px;
  background-color: #ffdf20;
  -webkit-box-shadow: var(--boxshadow-small);
  box-shadow: var(--boxshadow-small);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid;
}

.article-card__description h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.article-card:nth-of-type(1):hover h4 {
  color: var(--text-h1-Red-color);
}

.article-card:nth-of-type(2):hover h4 {
  color: var(--text-h1-Blue-color);
}

.article-card:nth-of-type(3):hover h4 {
  color: #9810fa;
}

.article-card__description p {
  font-size: 13.5px;
}

.article-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article-card__meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.article-card__meta-item svg {
  width: 10.5px;
}

.article-card__meta-item:last-of-type {
  color: var(--text-h1-Red-color);
}

.article-card__meta p {
  font-size: 10.5px;
  font-weight: 600;
}

.latest-articles .pop-btn {
  background-color: var(--text-black-color);
  color: var(--text-white-color);
  margin: auto;
  margin-top: 50px;
}

aside {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 90px;
  right: 0;
}

aside h4 {
  font-size: 22.5px;
  font-weight: 900;
  text-transform: uppercase;
}

.trending-section {
  margin-bottom: 32px;
}

.trending-section,
.categories-section {
  padding: 24px;
  border: 4px solid;
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
}

.trending-section__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  margin-top: 24px;
}

.trending-section__list-number {
  font-size: 27px;
  font-weight: 900;
}

.trending-section__list li:nth-of-type(1) .trending-section__list-number {
  color: var(--text-h1-Red-color);
}
.trending-section__list li:nth-of-type(2) .trending-section__list-number {
  color: var(--text-h1-Blue-color);
}
.trending-section__list li:nth-of-type(3) .trending-section__list-number {
  color: #9810fa;
}

.trending-section__list-text h5 {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: capitalize;
}

.trending-section__list-text p {
  color: #525252;
  font-size: 10.5px;
  text-transform: capitalize;
}

.categories-section h4 {
  margin-bottom: 12px;
}

.categories-section__buttons button {
  width: 100%;
  border: none;
  padding: 9px 12px;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 2px solid var(--text-black-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 12px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-align: left;
  color: var(--text-black-color);
}

.categories-section__buttons button:nth-child(1) {
  background-color: #fef9c2;
}
.categories-section__buttons button:nth-child(2) {
  background-color: #dcfce7;
}
.categories-section__buttons button:nth-child(3) {
  background-color: #fce7f3;
}
.categories-section__buttons button:nth-child(4) {
  background-color: #dbeafe;
}
.categories-section__buttons button:nth-child(5) {
  background-color: #f3e8ff;
}

.categories-section__buttons button:nth-child(1):hover {
  background-color: #ffdf20;
}
.categories-section__buttons button:nth-child(2):hover {
  background-color: #7bf1a8;
}
.categories-section__buttons button:nth-child(3):hover {
  background-color: #fda5d5;
}
.categories-section__buttons button:nth-child(4):hover {
  background-color: #8ec5ff;
}
.categories-section__buttons button:nth-child(5):hover {
  background-color: #dab2ff;
}

.categories-section__buttons button:hover {
  -webkit-transform: translate(-5px, -5px);
  -ms-transform: translate(-5px, -5px);
  transform: translate(-5px, -5px);
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
}

/* latest articles end  */

/* author section start  */

.author-section {
  padding-block: 80px;
  text-align: center;
  background-color: #ffd230;
  position: relative;
  border-bottom: 3px solid;
}

.author-section::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  background-color: #e5bc2b;
  top: 40px;
  right: 40px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.author-section::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  background-color: #fec030;
  bottom: 40px;
  left: 40px;
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
}
.author-section .title {
  position: relative;
  margin-bottom: 64px;
  z-index: 6;
}

.author-section .title::after {
  content: "";
  width: 128px;
  height: 11px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(1deg);
  -ms-transform: translateX(-50%) rotate(1deg);
  transform: translateX(-50%) rotate(1deg);
  background-color: var(--text-black-color);
}

.author-section .title p {
  font-size: 15px;
  font-weight: 600;
  color: #525252;
  margin-top: 16px;
}

.author-section__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
  z-index: 5;
}

.author-section__card-item {
  padding: 24px;
  position: relative;
  border: 4px solid var(--text-black-color);
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.author-section__card-item:nth-of-type(1) {
  background-color: #fef9c2;
}
.author-section__card-item:nth-of-type(2) {
  background-color: #dbfce7;
}
.author-section__card-item:nth-of-type(3) {
  background-color: #fce7f3;
}

.author-section__card-item:hover {
  -webkit-transform: translate(-2px, -2px);
  -ms-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
  -webkit-box-shadow: 7px 7px var(--text-black-color);
  box-shadow: 7px 7px var(--text-black-color);
}

.author-section__card-item figure img {
  border: 4px solid;
  margin-bottom: 24px;
  width: 96px;
  height: 96px;
  -o-object-fit: contain;
  object-fit: contain;
}
.author-section__card-item h4 {
  font-size: 22.5px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  -webkit-transition: all 0.18s;
  -o-transition: all 0.18s;
  transition: all 0.18s;
}

.author-section__card-item:nth-of-type(1):hover h4 {
  color: #e7000b;
}
.author-section__card-item:nth-of-type(2):hover h4 {
  color: #155dfc;
}
.author-section__card-item:nth-of-type(3):hover h4 {
  color: #9810fa;
}

.author-section__card-item p {
  font-size: 12px;
}

.author-section__card-item p {
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.6;
}
.author-section__card-item p:first-of-type {
  color: #525252;
  font-weight: 700;
  margin-bottom: 16px;
}

.author-section__card-item span {
  position: absolute;
  right: 32px;
  top: 25px;
  color: var(--text-white-color);
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border: 2px solid var(--text-black-color);
  font-weight: 700;
  text-transform: uppercase;
}

.author-section__card-item:nth-of-type(1) span {
  background-color: var(--text-h1-Red-color);
  -webkit-transform: rotate(12deg);
  -ms-transform: rotate(12deg);
  transform: rotate(12deg);
}
.author-section__card-item:nth-of-type(2) span {
  background-color: #2b7fff;
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
}
.author-section__card-item:nth-of-type(3) span {
  background-color: #ad46ff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.author-section__cards-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.author-section__cards-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 36px;
  height: 36px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--text-black-color);
  -webkit-transition: all 0.16s;
  -o-transition: all 0.16s;
  transition: all 0.16s;
}

.author-section__cards-links a:hover {
  -webkit-transform: translate(-2px, -2px);
  -ms-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
  -webkit-box-shadow: 5px 5px var(--text-black-color);
  box-shadow: 5px 5px var(--text-black-color);
}

.author-section__cards-links li:nth-of-type(1) a:hover {
  background-color: #1da1f2;
}
.author-section__cards-links li:nth-of-type(2) a:hover {
  background-color: #155dfc;
}
.author-section__cards-links li:nth-of-type(3) a:hover {
  background-color: #e60076;
}

.author-section__cards-links svg {
  width: 13px;
  color: var(--text-white-color);
}

/* author section end   */

/* rebellion section start  */

.rebellion {
  padding-inline: 18px;
  padding-block: 80px;
  border-bottom: 3px solid var(--text-black-color);
}

.rebellion-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 60px;
}

.rebellion .title {
  position: relative;
  margin-bottom: 64px;
  text-align: center;
}

.rebellion .title::after {
  content: "";
  width: 128px;
  height: 11px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-1deg);
  -ms-transform: translateX(-50%) rotate(-1deg);
  transform: translateX(-50%) rotate(-1deg);
  background-color: var(--text-black-color);
}

.rebellion .title p {
  font-size: 15px;
  font-weight: 600;
  color: #525252;
  margin-top: 16px;
}

.rebellion-section__info-heading h4 {
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 24px;
}

.rebellion-section__description {
  padding: 12px;
  border: 2px solid var(--text-black-color);
  -webkit-box-shadow: var(--boxshadow-small);
  box-shadow: var(--boxshadow-small);
  margin-bottom: 32px;
}

.rebellion-section__description p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.rebellion-section__list li {
  font-size: 13.5px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.rebellion-section__list span {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--text-h1-Red-color);
  border: 2px solid var(--text-black-color);
}

.rebellion-section__list li:nth-of-type(2) span {
  background-color: var(--text-h1-Blue-color);
}
.rebellion-section__list li:nth-of-type(3) span {
  background-color: #ad46ff;
}
.rebellion-section__list li:nth-of-type(4) span {
  background-color: #00c951;
}

.rebellion-section__list svg {
  width: 16px;
  color: var(--text-white-color);
}

.rebellion-section__info .pop-btn {
  color: var(--text-white-color);
  background-color: var(--text-black-color);
  font-size: 18px;
  padding: 16px 26px;
  margin-top: 50px;
}

.rebellion-section__testimonials {
  border: 4px solid;
  -webkit-box-shadow: var(--boxshadow-big);
  box-shadow: var(--boxshadow-big);
  padding: 30px;
}

.rebellion-section__testimonials-heading h4 {
  font-size: 22.5px;
  font-weight: 900;
  margin-bottom: 32px;
}

.rebellion-section__testimonial {
  border: 1.6px solid var(--text-black-color);
  padding: 12px;
  margin-bottom: 32px;
}

.rebellion-section__testimonial:nth-of-type(1) {
  background-color: #fef2f2;
}
.rebellion-section__testimonial:nth-of-type(2) {
  background-color: #eff6ff;
}
.rebellion-section__testimonial:nth-of-type(3) {
  background-color: #faf5ff;
  margin-bottom: 0;
}

.rebellion-section__testimonial-quote p {
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 16px;
}

.rebellion-section__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.rebellion-section__author-image {
  width: 36px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.rebellion-section__author-image img {
  border: 2px solid var(--text-black-color);
  width: 100%;
  height: 100%;
  object-fit:  contain;
  display: block;
}

.rebellion-section__author-name h5 {
  font-size: 13.5px;
  font-weight: 700;
}

.rebellion-section__author-name p {
  font-size: 10.5px;
  font-weight: 400;
  color: #525252;
}

/* rebellion section end   */

/* footer section start  */

footer {
  background-color: var(--text-black-color);
  padding-block: 80px;
}

footer,
footer a {
  color: var(--text-white-color);
}

.site-footer__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.site-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.site-footer__heading,
.site-footer__logo {
  margin-bottom: 32px;
}

.site-footer__svg {
  width: 48px;
  height: 48px;
  background-color: var(--text-white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-footer__logo svg {
  width: 25px;
  color: var(--text-black-color);
}

.site-footer__logo h4 {
  font-size: 23px;
  font-weight: 900;
}

.site-footer__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.site-footer__heading {
  font-size: 24px;
  font-size: 18px;
  font-weight: 900;
}

.site-footer__item {
  margin-bottom: 16px;
}

.site-footer__item:last-of-type {
  margin-bottom: 0;
}

.site-footer__link {
  font-size: 18px;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

footer a:hover {
  color: #ffdf20;
}

.site-footer__form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  color: var(--text-white-color);
  border: 1px solid;
  font-size: 18px;
  font-weight: 600;
  background-color: transparent;
  margin-top: 24px;
  outline: none;
}

.site-footer__form input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}

.site-footer__form input::-moz-placeholder {
  color: #999;
  font-size: 14px;
}

.site-footer__form input:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}

.site-footer__form input::-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}

.site-footer__form input::placeholder {
  color: #999;
  font-size: 14px;
}
.site-footer__form input:focus {
  border-color: #ffdf20;
}

.site-footer__form .pop-btn {
  width: 100%;
  font-size: 13.5px;
  padding: 12px 0;
  font-weight: 700;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffdf20;
  border: none;
  border-right: 3px solid #ca9f00;
  border-bottom: 3px solid #ca9f00;
}

.site-footer__form .pop-btn:hover {
  background-color: #fdc700;
}

.site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 4px solid var(--text-white-color);
  padding-top: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site-footer__copyright {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 9px;
}

.site-footer__list--legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.site-footer__list--legal .site-footer__item {
  margin-bottom: 0;
}

.site-footer__list--legal a {
  font-size: 12px;
  font-weight: 600;
}

/* footer section ended  */
