@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

@font-face {
  font-family: 'Dana';
  src: url('../Fonts/Dana-Regular.ttf');
}

@font-face {
  font-family: 'Cinema';
  src: url('../Fonts/Cinema.Font.ttf');
}

@font-face {
  font-family: 'Vazir';
  src: url('../Fonts/Vazirmatn-Regular.ttf');
}

:root {
  --bg-img: #000;
  --text: #fff;
}

html {
  font: 62.5% / normal var(--g-typography-regular);
  word-wrap: break-word;
  overflow-x: hidden;
  font-weight: 400;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Dana", sans-serif;

}

body {
  background:
    var(--bg-img) center/cover no-repeat fixed;

  min-height: 100vh;
  color: var(--text);
  line-height: 1.45;
}

.progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 5px;
  z-index: 999;
  background-color: rgb(0, 254, 26);
  width: 100%;
  animation: scroll-animation 1s linear;
  animation-timeline: scroll(root y);
}

@keyframes scroll-animation {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

/* NAVBAR */
.nav {

  position: sticky;
  top: 0;
  background: rgb(0, 0, 0);
  padding: clamp(0.5rem, 1vw + 0.2rem, 1rem) clamp(1rem, 2vw + 0.5rem, 3rem);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-inner {
  max-width: 1600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  gap: 2rem;
  /* فاصله بین لوگو و منو */
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 1600px;
}

.card1 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  background: #111;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeIn ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card1:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.card1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.card1:hover img {
  filter: brightness(1);
}

.card1-title {
  position: absolute;
  bottom: 50px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.tags {
  position: absolute;
  bottom: 15px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.tag {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

/* --- برند بالا سمت راست با طرح خاص --- */
.brand2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  clip-path: path("M0,0 H80 V60 C50,80 30,80 0,60 Z");
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Brand */
.brand {
  font-family: 'Cinema';
  display: flex;
  align-items: center;
  word-spacing: 5px;
  gap: clamp(0.5rem, 1vw, 0.5rem);
  color: #04ff00;
  text-decoration: none;
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 500;
  margin-left: 2rem;
  /* فاصله از منو */

}

.logo-img {
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  transition: sca 0.3s;

}

/* .logo-img:hover {
  width: 50px;
  height: auto; 
} */

/* Menu */
.menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1vw, 1.5rem);
  list-style: none;
  justify-content: center;
  list-style: none;
  margin-right: 1rem;
  /* کنار لوگو سمت راست */
  flex: 1;
  /* وسط قرار بگیره */
}

/* بخش لوگو */
.brand {
  margin-left: 2rem;
  /* فاصله از منو */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


/* چپ: سرچ و دکمه */
.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: auto;
  /* کل actions بره سمت چپ */

}

.menu a {
  text-decoration: none;
  padding: .5rem .75rem;
  font-size: clamp(0.9rem, 0.9vw, 1.05rem);
  font-weight: 700;
  color: var(--text);
  transition: .2s;
}

.menu a:hover,
.active {
  text-shadow: 0 0 20px #00ff48;
}

/* Search */
.search {
  position: relative;
  margin-left: auto;
  /* انتقال به چپ */
}

.search input {

  display: flex;
  width: 105%;
  padding: .6rem 0.5rem .6rem 1.75rem;
  font-family: 'Dana';
  font-size: 0.8rem;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  outline: none;
}

.search input::placeholder {
  color: #b6c0c9;

}

.search button {
  position: absolute;
  left: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.search svg {
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  opacity: 0.8;
}





/* Button */
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00ff33, #ffffff);
  border: none;
  outline: none;
  padding: 1rem 0rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.567);

  border-radius: 99.99rem;
  width: 30%;
  height: 30px;
  position: relative;

}

.nav-btn .btn {
  color: #000;
  font-weight: 900;
  font-size: 11px;
  text-decoration: none;

}

.nav-btn:hover {
  background: linear-gradient(135deg, #fff, #b6c0c9);
  transform: translateY(-3px);
}

.nav-btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 8px rgb(0, 254, 26);
}


/* Hamburger */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: clamp(40px, 6vw, 45px);
  height: clamp(40px, 6vw, 45px);
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: .25s;
  content: "";
  transition: transform .25s ease, top .25s ease, background .25s ease;
  transform-origin: center;
}

.hamburger span::before {
  position: absolute;
  top: -6px;
}

.hamburger span::after {
  position: absolute;
  top: 6px;
}

/* -------- Hero Section -------- */
.Container{
  display: grid;
}
.hero {
  
  height: 90vh;
  background: url('../images/jk6ER4JzAQX9RffDuZ6QPbXcIA.avif') center/cover no-repeat;
  border-radius: 20px;
  margin: 20px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px;
}
.hero h1, span{
  font-family: 'Cinema';
  word-spacing: 5px;
}
.hero h1 {

  font-size: 100px;
  font-weight: 500;
  line-height: 1.1;
}

.hero span {
  color: #00fe1a;

}

.hero p {
  margin-top: 5px;
  font-size: 20px;
  opacity: 0.8;
}

.hero .cta {
  margin-top: 40px;
  background: #00fe1a;
  color: #000;
  padding: 15px 30px;
  width: 20%;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
}

.hero .cta:hover {
  background: #eeee;
  transform: translateY(-3px);
}


.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 60px 50px;
}

.stat-card {
  background: #121212;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.stat-card.highlight {
  background: #00fe1a;
  color: black;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h2 {
  font-size: 40px;
  font-weight: 700;
}

.stat-card p {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.8;
}

.blog-card {
   position: relative; /* مطلق بودن حذف شد */
  top: 0; 
  left: 0;
  margin: 60px auto 80px auto; /* فاصله از گرید بالا و پایین */
  display: block; /* قرارگیری درست زیر grid */
  width: 500%; /* همان اندازه اصلی خود کارت */
  max-width: 1450px; /* همون عرض کارت اصلی */
  height: 370px; /* همان ارتفاع کارت اصلی */
  z-index: 10;
  border-radius: 25px;
  background: #00000026;
  box-shadow: 0px 10px 40px rgba(0, 254, 25, 0.162);
   display: flex;
  align-items: center;
  justify-content: center; 
   overflow: hidden; 
   transition: 0.3s ease; 
  z-index: 10;
}


.inner-part{
  position: absolute;
  display: flex;
  height: 360px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
}
#imgTap:checked ~ .inner-part {
  padding: 0;
  transition: .1s ease-in;
}
.inner-part .img{
  height: 300px;
  
  width: auto;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.1);
}
#imgTap:checked ~ .inner-part .img{
  height: 370px;
  width: 850px;
  z-index: 99;
  margin-top: 10px;
  transition: .3s .2s ease-in;
}
.img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0;
  transition: .6s;
}
#tap-1:checked ~ .inner-part .img-1,
#tap-2:checked ~ .inner-part .img-2,
#tap-3:checked ~ .inner-part .img-3,
#tap-4:checked ~ .inner-part .img-4{
  opacity: 1;
  transition-delay: .2s;
}
.content{
  padding: 0 20px 0 35px;
  width: 530px;
  margin-left: 50px;
  opacity: 0;
  transition: .6s;
}
#imgTap:checked ~ .inner-part .content{
  display: none;
}
#tap-1:checked ~ .inner-part .content-1,
#tap-2:checked ~ .inner-part .content-2,
#tap-3:checked ~ .inner-part .content-3,
#tap-4:checked ~ .inner-part .content-4{
  opacity: 1;
  margin-left: 0px;
  z-index: 100;
  transition-delay: .3s;
}
.content span{
  display: block;
  color: #7b7992;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
}
.content .title{
  font-size: 25px;
  font-weight: 700;
      font-family: 'Vazir';

  color: #4d3fb5;
  margin-bottom: 20px;
}
.content.content-3 .text{
    font-size: 13px;
}
.content.content-4 .text{
    font-size: 14px;
}
.content.content-3 .title{
color: #c23140b1;}
.content.content-2 .title{
color: #1e3e16;}
.content.content-4 .title{
color: #d8c91a;}
.content .text{
  color: #9f97d3e8;
  font-size: 15px;
    font-family: 'Vazir';

  margin-bottom: 30px;
  line-height: 1.5em;
  text-align: justify;
}
.content button{
  position: relative;
  display: inline-flex;
  padding: 8px 15px;
  border: none;
  font-size: 15px;
  font-family: 'Vazir';
  color: #000000e0;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  border: 1px solid #000000;
  background: linear-gradient(147deg, #00fe1a  0%, #1e3e16 74%);
}
.content button:hover{
  background: linear-gradient(147deg, #1e3e16 0%, #00fe19e0 74%);
}
.sliders{
  position: absolute;
  bottom: 25px;
  left: 15%;
  transform: translateX(-50%);
  z-index: 12;
}
#imgTap:checked ~ .sliders{
  display: none;
}
.sliders .tap{
  position: relative;
  height: 10px;
  width: 50px;
  background: #d9d9d9;
  border-radius: 5px;
  display: inline-flex;
  margin: 0 3px;
  cursor: pointer;
}
.sliders .tap:hover{
  background: #cccccc;
}
.sliders .tap:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: -100%;
  background: linear-gradient(147deg,#1e3e16 0%, #00fe1a 74%);
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform .6s;
  transform-origin: right;
}
input[type="radio"],
input[type="checkbox"]{
  display: none;
}
#tap-1:checked ~ .sliders .tap-1:before,
#tap-2:checked ~ .sliders .tap-2:before,
#tap-3:checked ~ .sliders .tap-3:before,
#tap-4:checked ~ .sliders .tap-4:before{
  transform: scaleX(1);
  width: 100%;
}









.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 1250px;
    margin: 15px auto;
    padding: 20px;
    gap: 20px;
}

.card-list .card-item {
    background: #121212;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
}

.card-list .card-item:hover {
    border: 2px solid #000;
}

.card-list .card-item img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}

.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.card-list .developer {
    background-color: #F7DFF5; 
    color: #B22485;
}   

.card-list .designer {
    background-color: #d1e8ff;
    color: #2968a8;
}

.card-list .editor {
    background-color: #d6f8d6; 
    color: #205c20;
}

.card-item h3 {
    color: #939393;
    font-size: 1.438rem;
    margin-top: 28px;
    font-weight: 600;
}

.card-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-35deg);
    height: 40px;
    width: 40px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.2s ease;
}

.card-list .card-item:hover .arrow  {
    background: #000;
    color: #fff; 
}

@media (max-width: 1200px) {
    .card-list .card-item {
        padding: 15px;
    }
}

@media screen and (max-width: 980px) {
    .card-list {
        margin: 0 auto;
    }
}



/* Responsive */
@media (max-width:990px) {
  .menu {
    position: absolute;
    top: 100%;
    right: 0;
    /* از سمت راست باز بشه */
    left: 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(8, 10, 14, 0.95);
    backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .4s ease, opacity .4s ease, padding .4s ease;
    opacity: 0;
    pointer-events: none;
  }
/* .blog-card {
    width: 50%;
    margin: 600px auto;
  } */
  .hero h1{
    font-size: 50px;
      font-weight: 500;
      margin-bottom: 20px;
  }
  .hero .cta{
   width: 65%;
  }
  .menu li {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    border-bottom: 1px solid #b6c0c9;
  }

  .menu li a {
    padding: 10px 0;
  }

  .menu .search,
  .menu .nav-btn {
    width: 90%;
    margin-top: 1rem;
  }

  .menu-toggle:checked~.menu {
    max-height: 100vh;
    height: 100vh;
    padding: 1.5rem 0;
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span,
  .hamburger span::before,
  .hamburger span::after {
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    display: block;
    transition: .25s;
    content: '';
  }

  .hamburger span::before {
    position: relative;
    top: -6px;
  }

  .hamburger span::after {
    position: absolute;
    top: 6px;
  }

  .menu-toggle:checked~.hamburger span {
    background: transparent;
  }

  .menu-toggle:checked~.hamburger span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-toggle:checked~.hamburger span::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .blog-card {
    margin: 60px auto;
    width: 205%;
    padding: 20px;
    border-radius: 20px;
  }
  .inner-part .img {
    width: 30%;
    height: auto;
  }
  .content .title {
    font-size: 22px;
  }
  .content .text {
    font-size: 15px;
  }
  .content button {
    font-size: 14px;
    padding: 8px 18px;
  }
}

@media (max-width:690px) {
  .blog-card {
    margin: 40px auto;
    width: 105%;
    padding: 20px;
    border-radius: 20px;
  }
  .inner-part .img {
    width: 100%;
    height: auto;
  }
  .content .title {
    font-size: 22px;
  }
  .content .text {
    font-size: 15px;
  }
  .content button {
    font-size: 10px;
    padding: 8px 8px;
    margin-left: 100%;
  }
  .sliders{
    margin-left: 35%;
  }
}
@media (max-width: 800px) {
  .blog-card {
    margin: 60px auto;
    padding: 20px;
    border-radius: 20px;
  }
  .inner-part .img {
    width: 100%;
    height: auto;
  }
  .content .title {
    font-size: 22px;
  }
  .content .text {
    font-size: 15px;
  }
  .content button {
    font-size: 14px;
    padding: 8px 18px;
  }
}



.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #000000;
  padding: 20px 0;
  margin-bottom: 50px;
  margin-top: 50px;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
  /* اضافه کردن حالت توقف با هاور */
}

.logo-slider:hover .logo-track {
  animation-play-state: paused; /* توقف حرکت وقتی موس روی اسلایدره */
}

.logo-item {
  flex: 0 0 auto;
  margin: 0 40px;
}

.logo-item img {
  height: 80px;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

/* پنهان کردن رادیوها */
.league-tabs input[type="radio"] { display: none; }

/* تب‌های لیگ */
.league-tabs {
  text-align: center;
  margin-bottom: 15px;

  
}

.league-tabs label {
  display: inline-block;
  padding: 8px 15px;
  margin: 10px 5px;
  background: rgb(18, 18, 18);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  
  
}
.matches-section h2{
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Vazir';
}
.league-tabs input[type="radio"]:checked + label {
  background: #1e3e16;
}

/* جدول */
.table-wrapper { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;

  min-width: 700px;
  text-align: center;
  font-family: Arial, sans-serif;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;

  vertical-align: middle;
}

th {
  background: #ffffffc0;
  color: #000;  
  font-weight: bold;
}

td img {
  height: 30px;
  margin-right: 5px;
  vertical-align: middle;
}

/* رنگ‌بندی وضعیت */
tr.past td:nth-child(5) { color: #6c757d; }
tr.upcoming td:nth-child(5) { color: #28a745; }
tr.live td:nth-child(5) { color: #eee; font-weight: bold; }

/* دکمه پخش زنده */
.live-btn {
  display: inline-block;
  padding: 5px 12px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 5px;
  transition: background-color 0.3s;
}

.live-btn:hover { background-color: transparent; }

/* دایره قرمز (LIVE indicator) */
.live-status {
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-dot {
  width: 10px;
  height: 10px;
  background-color: #6ed070;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

/* انیمیشن چشمک زدن دایره */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1); }
}

/* hover ردیف */
tbody tr:hover { background: rgba(0,253,26,0.1); }

/* نمایش لیگ انتخاب‌شده */
tbody tr { display: none; }
#all:checked ~ .table-wrapper table tbody tr { display: table-row; }
#premier:checked ~ .table-wrapper table tbody tr.premier { display: table-row; }
#la-liga:checked ~ .table-wrapper table tbody tr.la-liga { display: table-row; }
#serie-a:checked ~ .table-wrapper table tbody tr.serie-a { display: table-row; }

/* ریسپانسیو */
@media (max-width: 768px) {
  table, th, td { font-size: 14px; }
  td img { height: 25px; }
  .live-btn { padding: 4px 8px; font-size: 12px; }
}
.logo-live img{
  position: relative;
  top: 2px;
  left: 5px;
  width: 20px;
  height: auto;
}

.discover{
  
  margin-top: 200px;
  width: 100%;
    height: 200px;
    overflow: hidden;
    background-image: url('../images/tf207508-f-1920x1080-eb96b97.webp');
    background-attachment: fixed;
    background-position:  right right;
  
}

.news-section {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.news-section h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
    font-family: 'Vazir', sans-serif;

}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  
}

.card {
  display: flex;
  align-items: center;
  background: rgb(0, 0, 0);
  box-shadow: 0 4px 10px rgba(0, 254, 25, 0.162);
  border-radius: 10px;
  overflow: hidden;
  width: 500px;
  transition: transform 0.3s, box-shadow 0.3s;
  
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.card img {
  width: 200px;
  height: 165px;
  object-fit: cover;
  border-left: 3px solid #202020;
}

.card-content {
  padding: 15px;
  text-align: right;
      font-family: 'Vazir';

  
}

.card-content h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;

}

.card-content p {
  font-size: 15px;
  color: #898989;
  line-height: 1.6;
}
.card-content a{
  text-decoration: underline;
  color: #1e3e16a3;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    width: 100%;
  }
  .card img {
    width: 100%;
    height: 180px;
    border-left: none;
    border-bottom: 4px solid #007bff;
  }
  .card-content {
    text-align: center;
  }
}



.news-section h2{
  text-align: right;
}
footer{
    width: 100%;
    padding: 50px 0px;
    background-image: url('../images/footerPic/background-footer3.png');
    background-size: cover;
    
    /*background-color: #d0f0f8;
    -webkit-mask-image: url("../Images/background-footer.svg");
    mask-image: url("../Images/background-footer.svg");
    -webkit-mask-size: cover;
    mask-size: cover;*/
}

.container__footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 50px;
}

.box__footer{
    display: flex;
    flex-direction: column;
    padding: 40px;
    
}

.box__footer .logo img{
    width: 50px;
}

.box__footer .terms{
    max-width: 350px;
    margin-top: 20px;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 12px;
    
}

.box__footer h2{
    font-family: 'Vazir';

  text-align: right;
    margin-bottom: 10px;
    color: #343434;
    font-weight: 700;
}

.box__footer a{
    margin-top: 10px;
    color: #7a7a7a;
    font-weight: 600;
}

.box__footer a:hover{
    opacity: 0.8;
}

.box__footer a .fab{
    font-size: 20px;
}

.box__copyright{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copyright p{
    margin-top: 20px;
    color: #7a7a7a;
}

.box__copyright hr{
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}

