* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --main-color: #000;
  --sec-color: #b8c2ce;
  --text-color: #696868;
}
h1,
h3,
h2,
h4,
h5,
h6 {
  font-family: "Squada One", sans-serif;
}

p,
a,
span {
  font-family: "DM Sans", sans-serif;
}

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

a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}
.btn {
  margin-top: 20px;
  display: inline-block;
  color: #fff;
  padding: 15px 30px;
  background-color: #262626;
  border-radius: 8px;
  border: 1px solid #262626;
  transition: 0.3s;
}
.btn:hover {
  background-color: #fff;
  color: #696868;
}
.sec-btn {
  color: #fff;
  display: inline;
  font-size: 20px;
  padding: 10px 35px;
  border-radius: 8px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.sec-btn:hover {
  background-color: #fff;
  color: var(--text-color);
}

/* ==================================== start navbar ========================= */

.navbar {
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0px 1px 3px #fff;
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
.navbar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 40px;
  font-family: "Squada One", sans-serif;
  color: #262626;
}

.navbar .nav-list {
  display: flex;
  gap: 15px;
}
.navbar .nav-list a {
  color: #262626;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
}
.navbar .nav-list a:hover {
  color: #fd764e;
}
.navbar .nav-list a::after {
  content: "";
  background-color: #fd764e;
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.navbar .nav-list a:hover::after {
  width: 100%;
}
.navbar .btn {
  margin-top: 0;
}

.toggle{
  padding: 15px;
  border-radius: 5px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  background-color: #000;
  color: #fff;  
  display: none;
}
/* ==================================== end navbar ========================= */

/* ==================================== start hero ========================= */
.hero {
  height: 100vh;
  background-color: #69686853;
}
.hero .inner-hero {
  height: 100vh;
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
}
.hero .inner-hero .content-hero {
  background-image: url("../img/basketball.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.hero .inner-hero .content-hero h1 {
  font-size: 80px;
  color: #000000c4;
}

.hero .inner-hero .content-hero p {
  font-size: 20px;
  margin-top: 40px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 36px;
}

.hero .inner-hero .hero-img {
  width: 100%;
}

/* ==================================== end hero ========================= */
/* ==================================== start category ========================= */

.category {
  padding: 100px 0;
}
.category h2 {
  font-size: 30px;
}
.category .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.category .row .box {
  padding: 35px 50px;
  background-color: #ebeef3;
  margin: 20px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 23px;
  border-radius: 5px;
}

.category .row img {
  height: 270px;
  width: 288px;
  object-fit: cover;
  border-radius: 5px;
}

/* ==================================== end category ========================= */
/* ==================================== start news ========================= */

.news {
  padding: 100px 0;
}

.news .news-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.news .news-inner .news-content h2 {
  margin-bottom: 20px;
  font-size: 30px;
}
.news .news-inner .news-content .item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.news .news-inner .news-content .item h6 {
  color: #888;
  font-size: 14px;
  font-weight: normal;
}
.news .news-inner .news-content .item h3 {
  margin: 15px 0;
  font-size: 25px;
  font-weight: 600;
}
.news .news-inner .news-content .item p {
  color: var(--text-color);
  font-style: 15px;
}

.news .news-img {
  background-image: linear-gradient(rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5)),
    url(../img/newbg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  color: #fff;
}

.news .news-img .news-img-content h6 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}
.news .news-img .news-img-content h2 {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: normal;
}
/* ==================================== end news ========================= */
/* ==================================== start football ========================= */
.football {
  background: linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url("../img/football.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
}
.football .inner-football {
  height: 500px;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.football .inner-football .football-content h6 {
  font-size: 20px;
  font-weight: 500;
}
.football .inner-football .football-content h2 {
  font-size: 45px;
  margin: 15px 0;
  font-weight: 500;
}
.football .inner-football .football-content p {
  font-size: 20px;
  letter-spacing: 2px;
}
/* ==================================== end football ========================= */
/* ==================================== start next ========================= */

.next .next-inner {
  padding: 20px 0;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.next .next-inner button {
  border: 1px solid #bab8b8;
  padding: 16px 30px;
  color: #fff;
  background-color: #bab8b8;
  border-radius: 5px;
  cursor: pointer;
}

.next .next-inner span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.active {
  background-color: var(--main-color) !important;
  color: #fff !important;
}
/* ==================================== end next ========================= */
/* ==================================== start club ========================= */

.club {
  padding: 100px 0;
}

.club .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.club .row .club-content {
  display: flex;
  gap: 15px;
}
.club .row .club-content > div {
  width: 50%;
}
.club .row .club-content .item-content {
  position: relative;
}
.club .row .club-content .item-content img {
  height: 100%;
  object-fit: cover;
}
.club .row .club-content .item-layer {
  background-color: #c67f45bf;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
}

.club .row .club-content .item-layer h3 {
  font-size: 20px;
  margin-top: 5px;
  font-weight: normal;
}
.club .row .club-content .item {
  background-color: #dddddd2e;
  padding: 25px;
  border-radius: 5px;
}
.club .row .club-content .item .box {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}
.club .row .club-content .item .box img {
  height: 70px;
  width: 70px;
}
.club .row .club-content .item .box h6 {
  color: var(--text-color);
  font-weight: normal;
  font-size: 16px;
}
.club .row .club-content .item .box h2 {
  font-weight: 500;
  margin-top: 10px;
  font-size: 20px;
}

.club .row .club-content .club-btn {
  text-align: center;
}
.club .row .club-content .club-btn i {
  font-size: 18px;
  vertical-align: middle;
}

.club .club-table table {
  width: 100%;
  /* border-collapse: collapse; */
  background-color: #6968682d;
  padding: 20px;
  border-radius: 8px;
}
.club .club-table table th {
  text-align: start;
  font-size: 25px;
}
.club .club-table table td,
th {
  padding: 12px;
  font-size: 20px;
  text-align: center;
}
.club .table-img {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  font-weight: bold;
  font-size: 16px !important;
}
.club .club-table img {
  width: 30px;
  height: 30px;
}
/* ==================================== end club ========================= */
/* ==================================== start Sports Article  ========================= */

.article {
  padding: 100px 0 30px;
}
.article h2 {
  font-size: 30px;
  font-weight: 400;
}
.article .row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.article .row .box img {
  border-radius: 5px;
}
.article .row .box .avatar {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.article .row .box .avatar img {
  width: 40px;
}
.article .row .box h5 {
  color: var(--text-color);
  font-weight: normal;
  font-size: 14px;
  margin-top: 15px;
}
.article .row .box h3 {
  margin: 20px 0;
  font-weight: 500;
}
.article .row .box p {
  color: var(--text-color);
}

.next-article .next-inner {
  display: flex;
  gap: 15px;
}
.next-article button {
  border: 1px solid #bab8b8;
  padding: 16px 30px;
  color: #fff;
  background-color: #bab8b8;
  border-radius: 5px;
  cursor: pointer;
}
/* ==================================== end Sports Article  ========================= */
/* ==================================== start footer  ========================= */
.footer {
  padding: 100px 0;
}

.footer .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 25px;
}

.footer .footer-content h2 {
  font-size: 80px;
}

.footer .footer-content .input {
  margin-top: 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.footer .footer-content .input input {
  width: 100%;
  padding: 20px 15px;
  border-radius: 8px;
  font-size: 20px;
}
.footer .footer-content .input span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  background-color: #262626;
  color: #fff;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-content .input span i {
  transform: rotate(-45deg);
}
/* ==================================== end footer  ========================= */

.media {
  padding-bottom: 20px;
}
.media .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.media .social-media {
  display: flex;
  align-items: center;
  gap: 10px;
}
.media .social-media a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
