* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "BYekan";
  direction: rtl;
}
body {
  background-color: #0c0c0c;
  color: var(--white-text);
  position: relative;
}
:root {
  --active-color: #0e1f99;
  --white-text: rgba(242, 242, 242, 1);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style-type: none;
}
.part-container {
  padding: 0 5vw;
}
mark {
  color: var(--active-text);
  background-color: transparent;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 5vw;
  max-width: 1280px;
  margin: auto;
}

.hero-header .close,
.hero-header .hamburger {
  display: none;
}

.hero-header nav {
  width: 72%;
  min-width: 590px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-header nav ul {
  display: flex;
  align-items: center;
  gap: 6.5vw;
  justify-content: center;
}

.hero-header nav ul a {
  font-size: 24px;
  padding: 5px;
  font-weight: normal;
}

.hero-header nav ul li.active a,
.hero-header nav ul li a:hover {
  color: var(--active-color);
}

.hero-header .login {
  font-size: 24px;
  color: var(--white-text);
  background-color: var(--active-color);
  border-radius: 10px;
  padding: 8px 32px;
}
.hero-part {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  min-height: 650px;
  position: relative;
  background: url("./assets/images/hero-bg.png") center / contain no-repeat;
}
.hero-part h1 {
  color: var(--white-text);
  font-size: 48px;
  text-align: center;
}
.hero-part h1 span {
  color: var(--active-color);
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
}
.hero-part .istatistic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  color: #f2f2f2;
}
.hero-part .istatistic li {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.hero-part .istatistic span {
  font-size: 40px;
  font-weight: 700;
}
.hero-part .istatistic small {
  font-size: 20px;
  color: #c0c0c0;
}
.hero-part .textPart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-part .textPart p,
.hero-part .textPart + p {
  font-size: 24px;
  color: #f2f2f2;
  text-align: center;
  max-width: 263px;
}
.hero-part .textPart + p {
  position: relative;
  right: 115px;
  margin-top: 85px;
}
.hero-part footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
}
.hero-part footer .link img {
  width: fit-content;
  transform: rotate(-45deg);
}
.hero-part footer .link {
  font-size: 32px;
  color: #f2f2f2;
  border-radius: 10px;
  padding: 16px 32px;
  background-color: var(--active-color);
  border: 1px solid #efefef;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-part footer .links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-part footer .links li:hover img {
  background-color: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  border-radius: 50%;
}
.login-site {
  font-size: 32px;
  font-weight: 400;
  padding: 16px 54px;
  border-radius: 100px;
  background-color: var(--active-color);
  color: var(--white-text);
  cursor: pointer;
  width: fit-content;
}

.gradient-style {
  position: relative;
}
.gradient-style::before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  z-index: -1;
  background-image: linear-gradient(
    to right,
    rgba(239, 239, 239, 0.8),
    rgba(239, 239, 239, 0.3)
  );
  border-radius: inherit;
}

.our-services {
  margin: 65px auto 45px;
  max-width: 1280px;
  color: #f2f2f2;
}

.our-services > h2 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 400;
  text-align: center;
}

.our-services > p {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
}
.our-services .list {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.our-services li {
  border-radius: 20px;
  background-color: rgb(12, 17, 33);
  padding: 32px;
  padding-bottom: 52px;
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.our-services li.gradient-style::before {
  background-image: linear-gradient(
    to right,
    rgba(39, 66, 171, 0.8),
    rgba(39, 66, 171, 0.18)
  );
}
.our-services li::after {
  content: "";
  position: absolute;
  width: 60%;
  height: auto;
  aspect-ratio: 2 / 1;
  border-radius: 50%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  left: 20%;
  top: 0;
  z-index: 0;
  background-color: rgba(14, 30, 153, 0.25);
  filter: blur(40px);
}

.our-services li > img {
  max-width: 90px;
}

.our-services li span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 32px;
  font-weight: 400;
}
.our-services li a {
  font-size: 20px;
  color: #f2f2f2;
  border: 1px solid currentColor;
  border-radius: 60px;
  padding: 12px 24px;
}
.our-services li a:hover {
  background-color: rgba(242, 242, 242, 0.1);
}

.daily-gifts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 78px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.daily-gifts .content {
  flex-grow: 1;
  max-width: 600px;
}
.daily-gifts .content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 400;
}
.daily-gifts .content p {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 400;
}
.daily-gifts > img {
  max-width: 50%;
}
.daily-gifts .login {
  font-size: 24px;
  color: #f2f2f2;
  border-radius: 10px;
  padding: 16px 40px;
  background-color: var(--active-color);
  border: 1px solid #efefef;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.ranking {
  max-width: 1280px;
  margin: 0 auto 70px;
}
.ranking h2 {
  font-size: 48px;
  font-weight: 400;
}
.ranking strong {
  color: #f2f2f2;
  font-size: 32px;
  font-weight: 400;
}
.ranking .list {
  padding: 0 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  background-image: linear-gradient(
    to bottom right,
    rgba(12, 15, 34, 1),
    rgb(5, 6, 15)
  );
}
.ranking .list.gradient-style::before {
  background-image: linear-gradient(
    to right,
    rgba(39, 66, 171, 0.8),
    rgba(39, 66, 171, 0.18)
  );
}

.ranking .list .list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 35px 2px;
  width: 100%;
}
.ranking .list .list-item + .list-item {
  border-top: 2px solid rgba(14, 30, 153, 0.25);
}
.ranking .list .list-item > img:nth-child(2) {
  max-width: 94px;
  border: 1px solid var(--active-color);
  border-radius: 50%;
  object-fit: cover;
}
.ranking .list .list-item .desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-radius: 10px;
  padding: 24px;
  flex-grow: 1;
  font-size: 20px;
}
.ranking .list-item .desc .rate {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
}
.ranking .list-item .range::before {
  content: "";
  height: 100%;
  width: 80%;
  background-color: #00BDEB;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: inherit;
}
.ranking .list-item .range {
  height: 8px;
  width: 100%;
  background-color: #D9D9D9;
  border-radius: 10px;
  position: relative;
}
.ranking .desc strong {
  font-size: 20px;
}
.ranking .open-site {
  padding: 4px 4px 0;
  margin-right: 10%;
  opacity: 0.75;
}
.ranking .open-site:hover {
  opacity: 1;
}

.blog {
  max-width: 1280px;
  padding: 50px 5vw;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.blog > h2 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 400;
  text-align: center;
}

.blog .container {
  display: flex;
  width: 100%;
  gap: 24px;
}
.blog .container figure::before {
  background-image: linear-gradient(to right, rgba(39, 66, 171, 0.8), rgba(39, 66, 171, 0.18));
}
.blog .container figure {
  flex-grow: 1;
  width: calc(33% - 12px);
  border-radius: 30px;
  padding: 24px;
  min-width: 280px;
  background-color: rgb(12,14,26);
}
.blog .container figure > img {
  width: 100%;
  height: 285px;
  border-radius: 20px;
  display: block;
  margin-bottom: 16px;
  object-fit: cover;
  object-position: center;
}

.blog .container figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 24px;
  justify-content: space-between;
} 
.blog .container figure h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.blog .container figure p {
  font-size: 22px;
  margin-bottom: 22px;
  width: 90%;
}

.blog .container figure a img {
  padding: 2px;
  vertical-align: sub;
}
.blog .container figure:hover {
  cursor: pointer;
}

.blog .container figure a:hover {
  color: var(--white-text);
}
