@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --text-color: #211b2e;
  --text-g-color: #737373;
  --border-color: #f3f3f3;
  --bluish-color: #14171f;
  --black-color: #000000;
  --white-color: #ffffff;
  --blue-color: #2d53fe;
  --grey-1-color: #111111;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* todo ******* HEADER ******* */

.header-sec {
  padding: 10px;
  background-color: #ededed;
}

.header-sec-mb {
  display: none;
}

.header-sec .container-fluid {
  padding: 0px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-sec .link-items {
  display: flex;
  gap: 25px;
}

.header-sec .link-items a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
}

.header-sec .social .icon {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-sec .social .icon a {
  text-decoration: none;
  color: var(--text-color);
  transition: 0.2s;
}

.header-sec .social .icon a:hover {
  color: var(--blue-color);
  transition: 0.2s;
}

#searchModal {
  padding: 0;
  margin: 0;
}

#searchModal .modal-dialog {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}

#searchModal .modal-content {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}

#searchModal .modal-header {
  position: relative;
  border: none;
  padding: 0;
}

#searchModal .modal-header button {
  border: none;
  font-size: 40px;
  background-color: transparent;
  color: var(--grey-1-color);
  position: absolute;
  right: 20px;
  top: 5px;
  height: 50px;
  width: 50px;
  z-index: 666;
  line-height: 50px;
  font-weight: bolder;
}

#searchModal .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

#searchModal .input-sec input {
  min-height: 80px;
  width: 550px;
  border: none;
  outline: none;
  border-bottom: 1px solid #ddd;
  font-size: 60px;
  color: var(--text-color);
  font-weight: 700;
  appearance: none;
}

#searchModal .input-sec input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

#searchModal .input-sec input::placeholder {
  font-size: 60px;
  font-weight: 700;
  color: var(--text-color);
}

#searchModal .input-sec .status {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-g-color);
}

/* todo ******* NAVBAR ******* */

.navbar-sec {
  padding: 0px 0px;
  border-bottom: 1px solid #ccc;
  position: relative;
  transition: 0.3s;
  background-color: #fff;
  height: 85px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;

}

.navbar-sec.sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s;
  animation: stickyAnime 0.5s ease;
}


@keyframes stickyAnime {
  0% {
    transform: translateY(-50px);
  }
}

.navbar-sec .container-fluid {
  padding: 0px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-sec .container-fluid .left-side {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 35%;
}

.navbar-sec .logo img {
  width: 220px;
}

.nav-hover-items{
  display: flex;
}

.nav-hover-items li {
  list-style: none;
  padding: 25px 15px;
  position: relative;
  height: 100%;
  display: inline-block;
  cursor: pointer;
}

.nav-hover-items li:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2d53fe;
  top: 100%;
  left: 0;
}

.nav-hover-items li a {
  text-decoration: none;
  color: #161616;
  font-weight: 300;
}

.nav-hover-items li span {
  display: inline-block;
  margin-left: 10px;
  opacity: 0.7;
  font-size: 18px;
  transform: rotate(90deg);
}

.nav-hover-items li:hover span {
  opacity: 1;
}

.nav-hover-items li a {
  text-decoration: none;
}

.hide-hover-list {
}

.nav-hover-items li:hover .hide-hover-list {
  display: block;
}

.hide-hover-list {
  display: none;
  position: absolute;
  top: 105%;
  width: 200px;
  left: -5px;
  background-color: #fff;
  border: 1px solid #eee;
  z-index: 999999999999;
  animation: hoverList 0.3s ease;
}

@keyframes hoverList {
  0% {
    opacity: 0;
  }
}

.hide-hover-list a {
  display: block;
  padding: 8px 15px;
  border-bottom: 1px solid #eee;
}

.hide-hover-list a:hover {
  background-color: #ededed68;
}

.hamburger-icon {
  height: 40px;
  width: 45px;
  justify-content: center;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.hamburger-icon:hover .line .inner,
.hamburger-icon:hover .inner:before,
.hamburger-icon:hover .inner:after {
  background-color: #2d53fe;
  transition: 0.3s;
}

.hamburger-icon .line {
  display: inline-flex;
  height: 30px;
  width: 30px;
  position: relative;
  top: -3px;
  transition: 0.3s;
}

.hamburger-icon .inner,
.hamburger-icon .inner:before,
.hamburger-icon .inner:after {
  position: absolute;
  height: 4px;
  background-color: #000;
  transition: 0.3s;
}

.hamburger-icon .inner {
  bottom: 0px;
  width: 80%;
}

.hamburger-icon .inner:before,
.hamburger-icon .inner:after {
  display: block;
  content: "";
  width: calc(100% + 5px);
}

.hamburger-icon .inner:before {
  transform: translateY(-8px);
}

.hamburger-icon .inner:after {
  top: 0px;
  transform: translateY(-16px);
}

#navbarCanvas {
  background-color: var(--grey-1-color);
}

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  line-height: 25px;
  width: 30px;
  background-color: #444;
  border: none;
  z-index: 99;
}

.close-btn svg {
  position: relative;
  top: 0px;
}

.close-btn svg path {
  stroke: #fff !important;
  font-weight: bolder;
}

.offcanvas-header {
  height: 70px;
}

.offcanvas-body {
  position: relative;
  padding: 0;
}

.offcanvas-body::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
  border-radius: 10px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

.offcanvas-body .navbar-items {
  height: 100%;
  position: relative;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offcanvas-body .navbar-items .header {
  padding: 20px;
}

.offcanvas-body .navbar-items .nav-item {
  border-bottom: 1px solid #333;
  padding: 8px 0px;
}

.offcanvas-body .navbar-items .nav-item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
}

.offcanvas-body .navbar-items .nav-item .head:hover .name {
  opacity: 0.75;
  transition: 0.3s;
}

.offcanvas-body .navbar-items .nav-item .name {
  font-size: 17px;
  font-weight: bold;
  color: #f0f0f0;
  transition: 0.3s;
}

.offcanvas-body .navbar-items .nav-item .icon {
  text-align: center;
  padding: 0px 8px;
}

.offcanvas-body .navbar-items .nav-item .icon i {
  font-size: 26px;
  display: inline-block;
  color: #f0f0f0;
}

.offcanvas-body .footer {
  position: relative;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 0px;
}

.offcanvas-body .footer .icon {
  display: flex;
  gap: 15px;
}

.offcanvas-body .footer .icon .item {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff2;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.offcanvas-body .footer .icon .item i {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.offcanvas-body .footer .icon .item:hover i {
  color: #2d53fe;
  transition: 0.3s;
}

.nav-hide-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 0;
  padding: 0px 10px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.nav-hide-list.show {
  max-height: 1000px;
}

.nav-hide-list a {
  text-decoration: none;
  padding: 8px;
  padding-left: 0;
  color: #f0f0f0;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.nav-hide-list a:hover {
  opacity: 0.75;
  transition: 0.3s;
}

.offcanvas-body .navbar-items .nav-item{
  display: block;
  text-decoration: none;
}

.offcanvas-body .navbar-items .nav-item .btc-bonus {
  padding: 5px;
  padding-right: 0;
  padding-right: 0;
  border-radius: 3px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.15),
    0px 4px 18px -2px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  width: 65%;

  font-weight: 600;
}

.nav-item .btc-bonus {
  background-color: #333333;
  color: #f0f0f0;
  padding: 5px;
}

.nav-item .wails {
  background-color: #2cd053;
  color: #fff;
  padding: 5px;
}

.nav-item .bc {
  background-color: #0b243a;
  color: #fff;
  padding: 5px;
}

.nav-item .mw {
  background-color: #18b8da;
  color: #fff;
  padding: 5px;
}

.nav-item .btc-bonus img {
  width: 20px;
}

.navbar-sec .right-side {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-btn-sec {
  display: grid;
  gap: 15px;
  grid-template-columns: auto auto auto auto;
  width: 100%;
  height: 100%;
}

.bonus-btn-sec .nav-item{
  position: relative;
  cursor: pointer;
 height: 85px;
 display: flex;
 align-items: center;
 text-decoration: none;

}

.bonus-btn-sec .nav-item:hover::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2d53fe;
  bottom: 0%;
  left: 0;
}

.bonus-btn-sec .nav-item .btc-bonus {
  border-radius: 3px;
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  text-align: center;
  padding: 5px 0px;
}

.bonus-btn-sec .nav-item {
  width: 100%;
}

.navbar-sec .search {
  display: none;
}



.myAnime{
  animation: scalling 0.7s ease;
  transition: 0.7s;
}


@keyframes scalling {
  0%{
    opacity: 0;
    transform: scale(0.7);
  }
}


/* todo ******* COIN-DETAILS-SEC ******* */

.coin-details-sec {
  padding: 30px 0px;
  padding-bottom: 30px;
}

.container-xxl {
  overflow: hidden !important;
}

.coin-details-sec .coin-list {
  border-bottom: 1px solid #ccc;
  display: flex;
  width: 1550px;
  padding: 20px 0px;
}

.coin-details-sec .coin-list .list-item {
  display: flex;
  gap: 15px;
  border-right: 1px solid #ddd;
  padding: 0px 15px;
  width: 380px;
}

.coin-details-sec .coin-list .coin-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 180px;
}

.coin-details-sec .coin-list .coin-info .coin-name {
  display: flex;
  gap: 5px;
  align-items: center;
}

.coin-details-sec .coin-list .coin-info .coin-name .img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  overflow: hidden;
}

.coin-details-sec .coin-list .coin-info .coin-name img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coin-details-sec .coin-list .coin-info .coin-name span {
  font-weight: 700;
  color: var(--text-g-color);
  opacity: 0.6;
  font-size: 14px;
}

.coin-details-sec .coin-list .coin-info .price {
  display: inline;
}

.coin-details-sec .coin-list .coin-info .price b {
  font-weight: normal !important;
}

.coin-details-sec .coin-list .coin-info .price b span {
  font-weight: bold;
  color: #565656;
}

.coin-details-sec .coin-list .coin-info .price .percent {
  font-weight: bold;
  color: #85b000;
  position: relative;
  margin-left: 30px;
  display: inline;
}

.coin-details-sec .coin-list .coin-info .price .percent::before {
  content: "\2191";
  position: absolute;
  left: -17px;
  font-weight: bold;
}

.coin-details-sec .coin-list .coin-grap {
  width: 150px;
  height: 50px;
}

.coin-details-sec .coin-list .coin-grap .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* todo ******* HERO-SECTION ******* */

.hero-section {
  padding: 20px 0px;
}

.hero-section .main-card {
  height: 470px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.hero-section .main-card .full-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: 0.9s;
}

.hero-section .main-card:hover .full-img {
  transform: scale(1.1);
  transition: 0.9s;
}

.hero-section .main-card .grid-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  padding: 25px 30px;
  display: flex;
  align-items: flex-end;
}

.hero-section .main-card .grid-overlay .content {
  position: relative;
  z-index: 5;
  opacity: 1;
}

.hero-section .main-card .grid-overlay .btn-sec {
  display: flex;
  gap: 5px;
}

.hero-section .main-card .grid-overlay .btn-any {
  background-color: var(--blue-color);
  color: #fff;
  border: none;
  font-size: 11px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.hero-section .main-card .grid-overlay .link-items {
  width: 85%;
  position: relative;
  z-index: 9;
}

.hero-section .main-card .grid-overlay .link-items a {
  padding: 20px 0px;
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  transition: 0.2s;
}

.hero-section .writter {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hero-section .writter .img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
}

.hero-section .writter .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .writter .name {
  display: inline;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
}

.hero-section .writter .time {
  display: inline;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
}
.hero-section .writter .time::before {
  content: "\2013";
  padding: 0 4px;
  color: #fff;
  display: inline-block;
  transform: scale(0.916);
}

.hero-section .items .img {
  height: 270px;
  position: relative;
}

.hero-section .items .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .items .details-btn {
  background-color: var(--blue-color);
  color: #fff;
  border: none;
  font-size: 11px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  position: absolute;
  left: 25px;
  bottom: 0;
  text-decoration: none;
}

.hero-section .items .title a {
  padding: 15px 0px;
  display: block;
  text-decoration: none;
  color: var(--text-color);
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: 10px;
  transition: 0.2s;
}

.hero-section .items .title a:hover {
  color: var(--blue-color);
  transition: 0.2s;
}

.hero-section .items .list-details a {
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-section .items .list-details a::before {
  content: "\2022";
  display: inline-flex;
  padding: 0 6px;
  padding-left: 2px;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
}

.hero-section .items .list-details a:first-child::before {
  display: none;
}

.hero-section .items .list-details .time {
  display: inline;
  font-size: 10px;
  color: #8a8a8a;
  text-transform: uppercase;
}

.hero-section .items .list-details .time::before {
  content: "\2013";
  padding: 0 4px;
  color: #8a8a8a;
  display: inline-block;
  transform: scale(0.916);
}

.hero-section .items .sub-title {
  color: var(--grey-1-color);
  font-size: 14px;
  word-break: break-all;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 10px 0px;
}

.hero-section .latest-news-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hero-section .latest-news-header::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 45px;
  bottom: -2px;
  background-color: var(--blue-color);
}

.hero-section .latest-news-header .title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #161616;
}

.hero-section .latest-news-header .view-more {
  text-decoration: none;
  color: #999;
  text-transform: capitalize;
  font-size: 13px;
  transition: 0.2s;
}

.hero-section .latest-news-header .view-more:hover {
  color: #666;
  transition: 0.2s;
}

.hero-section .each-news {
  border-bottom: 1px solid #ddd;
  padding: 12px 0px;
}

.hero-section .each-news .head a {
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-section .each-news .head a::before {
  content: "\2022";
  display: inline-flex;
  padding: 0 6px;
  padding-left: 3px;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
}

.hero-section .each-news .head a:first-child::before {
  display: none;
}

.hero-section .each-news .link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hero-section .each-news .link .title {
  width: 60%;
}

.hero-section .each-news .link .title a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  padding-bottom: 10px;
  transition: 0.2s;
  display: inline-block;
}

.hero-section .each-news .link .title a:hover {
  color: var(--blue-color);
  transition: 0.2s;
}

.hero-section .each-news .link .img {
  height: 95px;
  width: 95px;
  overflow: hidden;
  border-radius: 50%;
}

.hero-section .each-news .link .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .each-news .aside-writter .name {
  color: #000;
}

.hero-section .each-news .aside-writter .name span {
  color: #737373;
}

.hero-section .each-news .aside-writter .time {
  color: #737373;
}

.hero-section .each-news .aside-writter .time::before {
  color: #737373;
}

/* todo ******* PRESS-RELEASE-SECTION ******* */

.press-section {
  padding: 20px 0px;
  background-color: #2d2e30;
  padding-bottom: 50px;
}

/* todo ******* CRYPTO-SECTION ******* */

.crypto-section {
  padding: 60px 0px;
  background-color: var(--white-color);
}

.crypto-section .all-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.crypto-section .all-cards .img {
  height: 260px;
}

.crypto-section .all-cards .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crypto-section .all-cards .title a {
  padding: 15px 0px;
  display: block;
  text-decoration: none;
  color: var(--text-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: 10px;
  transition: 0.2s;
}

.crypto-section .all-cards .title a:hover {
  color: var(--blue-color);
  transition: 0.2s;
}

.crypto-section .all-cards .list-details a {
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crypto-section .all-cards .list-details a::before {
  content: "\2022";
  display: inline-flex;
  padding: 0 6px;
  padding-left: 2px;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
}

.crypto-section .all-cards .list-details a:first-child::before {
  display: none;
}

.crypto-section .all-cards .list-details .time {
  display: inline;
  font-size: 10px;
  color: #8a8a8a;
  text-transform: uppercase;
}

.crypto-section .all-cards .list-details .time::before {
  content: "\2013";
  padding: 0 4px;
  color: #8a8a8a;
  display: inline-block;
  transform: scale(0.916);
}

.crypto-section .all-cards .sub-title {
  color: var(--grey-1-color);
  font-size: 15px;
  word-break: break-all;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 10px 0px;
}

/* * SEARCH BOX SIDE */

.crypto-section .search-box {
  display: flex;
  margin-bottom: 50px;
}

.crypto-section .search-box input[type="search"] {
  border: 1px solid #ddd;
  padding: 7px 12px;
  outline: 0;
  height: auto;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 2px 7px -4px rgba(0, 0, 0, 0.1);
  background-color: transparent;
  border-right: none;
  appearance: none;
}

.crypto-section .search-box input[type="search"]::-webkit-search-cancel-button,
.crypto-section .search-box input[type="search"]::-webkit-search-decoration {
  appearance: none;
}

.crypto-section .search-box input:focus {
  border: 1px solid #666;
}

.crypto-section .search-box input[type="submit"] {
  padding: 0 17px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: var(--btn-shadow);
  transition: 0.25s ease-in-out;
  background: var(--blue-color);
  color: #fff;
  border: 0;
  position: relative;
  left: -1px;
  border-radius: 0px 2px 2px 0px;
}

.crypto-section .item-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
  display: flex;
  align-items: center;
}

.crypto-section .item-name img {
  width: 18px;
  margin-right: 5px;
}

.game-items {
  margin-top: 12px;
}

.game-items .item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 65px;
  align-items: center;
  border-top: 1px solid #ddd;
}

.add-img {
  border-top: 1px solid #ddd;
  padding: 10px 0px;
}

.game-items .item .left {
  display: flex;
  gap: 15px;
  align-items: center;
}

.game-items .item .left .img {
  height: 40px;
  width: 40px;
}

.game-items .item .left .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.game-items .item .left .game-name {
  text-decoration: none;
  color: var(--text-g-color);
  letter-spacing: 0.05em;
}

.game-items .item .btn-sec {
  display: flex;
  gap: 5px;
  align-items: center;
}

.game-items .item .btn-sec button {
  padding: 3px 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  letter-spacing: 1px;
  transition: 0.3s;
}

.game-items .item .btn-sec .review {
  background-color: var(--text-color);
  color: var(--white-color);
  transition: 0.3s;
}

.game-items .item .btn-sec .visit {
  background-color: var(--blue-color);
  color: var(--white-color);
  transition: 0.3s;
}

.game-items .item .btn-sec .visit:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  transition: 0.3s;
}

.game-items .item .btn-sec .review:hover {
  background-color: #e52323;
  transition: 0.3s;
}

/* todo ******* PRESS-RELEASE-SECTION ******* */

.press-section {
  padding: 20px 0px;
  background-color: #2d2e30;
  padding-bottom: 30px;
}

.press-section .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid var(--text-g-color);
}

.press-section .header .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: capitalize;
  text-decoration: none;
}

.press-section .header .more a {
  text-decoration: none;
  color: #e2e2e2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  transition: 0.2s;
}

.press-section .header .more a:hover {
  color: #fff;
  transition: 0.2s;
}

/* ! diffrent between press release & memes */

.press-section .all-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 30px;
  margin-top: 25px;
}

.memes-section .all-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0px 30px;
  margin-top: 25px;
}

/* ! diffrent between press release & memes */
.press-section .all-items .items img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: 0.3s;
}

.memes-section .all-items .items img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.3s;
}

.press-section .all-items .items img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.press-section .all-items .items .title a {
  padding: 15px 0px;
  display: block;
  text-decoration: none;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding-bottom: 10px;
  transition: 0.2s;
}

.press-section .all-items .items .title a:hover {
  color: var(--blue-color);
  transition: 0.2s;
}

.press-section .all-items .items .list-details a {
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.press-section .all-items .items .list-details a::before {
  content: "\2022";
  display: inline-flex;
  padding: 0 6px;
  padding-left: 2px;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
}

.press-section .all-items .items .list-details a:first-child::before {
  display: none;
}

.press-section .all-items .items .list-details .time {
  display: inline;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.press-section .all-items .items .list-details .time::before {
  content: "\2013";
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.65);
  display: inline-block;
  transform: scale(0.916);
}

/* todo ******* NEWS-SECTION ******* */

.news-section {
  padding: 30px 0px;
}

.news-section .col-xxl-4 .news-section .col-xl-4,
.news-section .col-lg-4 {
  padding: 0px 20px;
}

.news-section .news-header {
  padding: 10px 0px;
  position: relative;
  overflow: hidden;
}

.news-section .news-header .news-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-color);
  display: block;
  width: 100%;
  position: relative;
}

.news-section .news-header .news-name::after {
  content: "";
  margin-top: 1px;
  height: 2px;
  width: 100%;
  top: 15px;
  background-color: #e2e2e2;
  flex: 1 1 auto;
  position: absolute;
  margin-left: 10px;
}

.news-section .card {
  border: none;
  border-radius: 0;
}

.news-section .card .card-header {
  padding: 0;
  background-color: transparent;
  border: none;
}

.news-section .card .card-header .img {
  padding: 0;
  height: 260px;
  width: 100%;
}

.news-section .card .card-header img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.news-section .card .card-header img:hover {
  opacity: 0.9;
  transition: 0.3s;
}

.news-section .card-header .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
  display: block;
  text-decoration: none;
  transition: 0.2s;
  margin: 15px 0px;
  margin-bottom: 5px;
  line-height: 26px;
}

.news-section .card-header .list-details a {
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-section .card-header .list-details a::before {
  content: "\2022";
  display: inline-flex;
  padding: 0 6px;
  padding-left: 3px;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
}

.news-section .card-header .list-details a:first-child::before {
  display: none;
}

.news-section .card-header .title:hover {
  color: var(--blue-color);
  transition: 0.2s;
}

.news-section .card-header .list-details .time {
  display: inline-block;
  font-size: 10px;
  color: var(--text-g-color);
  text-transform: uppercase;
}

.news-section .card-header .list-details .time::before {
  content: "\2013";
  padding: 0 4px;
  color: var(--text-g-color);
  display: inline-block;
  transform: scale(0.916);
}

.news-section .card-header .sub-title {
  color: var(--grey-1-color);
  font-size: 15px;
  word-break: break-all;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 15px 0px;
}

.news-section .card .card-body {
  padding: 0;
  max-height: auto;
  border: none;
}

.news-section .card .box {
  padding: 15px 0px;
  border-bottom: 1px solid #e9e9e9;
  text-decoration: none;
  display: flex !important;
  gap: 15px;
  justify-content: space-between;
}

.news-section .card .box .img-part {
  width: 30%;
  height: 75px;
  overflow: hidden;
}

.news-section .card .box .img-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.news-section .card .box .img-part img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.news-section .card .box .link {
  display: inline-block;
  width: 70%;
}

.news-section .card .box .link a {
  text-decoration: none;
  color: var(--black-color);
  font-size: 16px;

  font-weight: 600;
  line-height: 22px;
  display: inline-block;
}

.news-section .card .box .link a:hover {
  color: var(--blue-color);
  transition: 0.2s;
}

.news-section .box .link .news-time {
  display: inline-block;
  font-size: 10px;
  color: var(--text-g-color);
  text-transform: uppercase;
  margin-top: 15px;
}

.news-section .card .box:last-child {
  border: none;
}

.news-section .card .box .news-link-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  display: inline-block;
}

.news-section .card .box .news-link-title:hover {
  color: #5c5756;
}

.news-section .card .box .news-writter {
  font-size: 12px;
  color: #737373;
  padding-top: 5px;
}

/* ? ~~~~~~~~~~~ FOOTER-SECTION ~~~~~~~~~~~ */

.footer-section {
  padding-top: 100px;
  padding-bottom: 70px;
  background-color: var(--bluish-color);
}

.footer-section .img {
  text-align: center;
}

.footer-section .img img {
  width: 320px;
  max-width: 100%;
  height: auto;
}

.desclaimer {
  color: grey;
  width: 78%;
  display: block;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 14px;
}

/* ? ~~~~~~~~~~~ COPYRIGHT-SECTION ~~~~~~~~~~~ */

.copyright {
  padding: 20px 0px;
  background-color: var(--black-color);
}

.copyright-disclaimer {
  font-size: 13px;
  font-weight: 500;
  color: #ffffffb3;
}

.copyright-disclaimer a {
  text-decoration: none;
  color: inherit;
}

.copyright .link-items {
  display: flex;
  flex-wrap: wrap;
}

.copyright .link-items li {
  list-style: none;
  position: relative;
}

.copyright .link-items li::before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #555;
  position: absolute;
  left: 0;
  top: 0;
}

.copyright .link-items li:first-child::before {
  display: none;
}

.copyright .col-xxl-5,
.copyright .col-xl-5,
.copyright .col-lg-5 {
  padding: 0 !important;
}

.copyright .link-items li a {
  font-size: 13px;
  color: #ffffffb3;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  padding: 0px 10px;
}

/* todo ~~~~~~~~~~~ RESPONSIVE ~~~~~~~~~~~ */

@media screen and (max-width: 1470px) {
  .navbar-sec .container-fluid .left-side {
    width: 40%;
  }

  .navbar-sec .container-fluid .right-side {
    width: 60%;
  }

  .bonus-btn-sec .nav-item .btc-bonus {
    padding: 5px 0px;
  }
}


@media screen and (max-width: 1365px) {
  .navbar-sec .container-fluid .left-side {
    width: 50%;
  }

  .navbar-sec .container-fluid .right-side {
    width: 50%;
  }

  .bonus-btn-sec .nav-item .btc-bonus {
    padding: 5px 8px;
  }
}

@media screen and (max-width: 1200px) {
  .navbar-sec .container-fluid .left-side {
    width: 55%;
  }

  .navbar-sec .container-fluid .right-side {
    width: 45%;
    overflow: hidden;
  }

  .bonus-btn-sec {
    width: 1500px;
  }

  .bonus-btn-sec .nav-item {
    width: 240px;
  }
}

@media screen and (max-width: 991px) {
  .header-sec {
    display: none;
  }

  .header-sec-mb {
    display: block;
    padding: 10px 0px;
    background-color: var(--grey-1-color);
  }

  .header-sec-mb .container-fluid {
    max-width: 768px;
  }

  .header-sec-mb .link-items a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
  }

  #searchModal .modal-header button {
    font-size: 35px;
    right: 10px;
    top: 10px;
  }

  #searchModal .input-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  #searchModal .input-sec input {
    min-height: 80px;
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #ddd;
    font-size: 40px;
    color: var(--text-color);
    font-weight: 700;
    appearance: none;
  }

  #searchModal .input-sec input::placeholder {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
  }

  #searchModal .input-sec .status {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-g-color);
  }

  .navbar-sec .container-fluid .left-side {
    width: 100%;
    justify-content: space-between;
  }

  .navbar-sec .container-fluid .right-side {
    display: none;
  }

  .navbar-sec .search {
    display: block;
  }

  .navbar-sec .search a {
    text-decoration: none;
    font-size: 22px;
    color: var(--grey-1-color);
    font-weight: 700;
  }

  .nav-hover-items {
    display: none;
  }

  .bonus-btn-sec {
    display: none;
  }

  .navbar-sec .container-fluid {
    max-width: 768px;
    padding: 0px 12px;
    justify-content: space-between;
  }

  .coin-details-sec .container-xxl {
    max-width: 768px;
    overflow: hidden;
    overflow-x: scroll !important;
  }

  .coin-details-sec .container-xxl::-webkit-scrollbar {
    display: none;
  }

  .hero-section .aside-news {
    margin-top: 30px;
  }

  .hero-section .each-news .link .title {
    width: 80%;
  }

  .search-box {
    margin-top: 30px;
    width: 75%;
  }

  /* *** MEMES SECTION */

  .container-xxl {
    max-width: 768px;
  }

  /* ! diffrent between */
  .press-section .all-items .items img {
    height: 220px;
  }

  /* *** NEWS SECTION */

  .news-section .container-xxl {
    max-width: 768px;
  }

  .press-section .all-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
  }

  /* *** COPYRIGHT SECTION */

  .copyright-disclaimer {
    text-align: center;
  }

  .copyright .link-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
  }
}

@media screen and (max-width: 576px) {
  /* *** NAVBAR SECTION */

  #navbarCanvas {
    width: 80vw;
  }

  .coin-details-sec .container-xxl {
    overflow: hidden;
    overflow-x: scroll !important;
  }

  /* *** HERO SECTION */

  .hero-section .main-card {
    height: 370px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .hero-section .items .img {
    height: 230px;
    position: relative;
  }

  .hero-section .main-card .grid-overlay .link-items {
    width: 100%;
    position: relative;
    z-index: 9;
  }

  .hero-section .main-card .grid-overlay .link-items a {
    padding: 20px 0px;
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    transition: 0.2s;
  }

  .hero-section .each-news .link .title {
    width: 70%;
  }

  /* *** CRYPTO SECTION */

  .search-box {
    margin-top: 30px;
    width: 100%;
  }

  /* *** CRYPTO SECTION */

  .crypto-section .all-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .crypto-section .all-cards .img {
    height: 230px;
  }

  /* *** PRESS SECTION */

  .press-section .all-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 25px;
  }

  /* ! diffrent between press release & memes */
  .press-section .all-items .items img {
    height: 100%;
    max-height: 230px;
  }

  .memes-section .all-items .items img {
    height: 100%;
    max-height: 300px;
  }

  /* *** FOOTER SECTION */

  .footer-section .img img {
    width: 280px;
  }
}

/*  */

@media screen and (min-width: 1200px) {
}
