/* ========================================= start general style ================================== */
:root {
  --main-color: #cbfe1c;
  --bs-nav-link-color: white !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Chakra Petch", sans-serif;
}
.text-color {
  color: var(--main-color);
}
.navbar-brand:hover {
  color: var(--main-color);
}
.nav-link {
  color: #ffffff;
}
.nav-link:hover {
  color: var(--main-color);
}
.navbar-nav .nav-link.active {
  color: var(--main-color) !important;
}
.header-center-p::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--main-color);
  top: 10%;
  left: 35%;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 20%);
}
.header-center-p::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--main-color);
  top: 10%;
  right: 35%;
  transform: rotateY(180deg);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 20%);
}
.header-center-p2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--main-color);
  top: 17%;
  left: 33%;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 20%);
}
.header-center-p2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--main-color);
  top: 17%;
  right: 33%;
  transform: rotateY(180deg);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 20%);
}
.header-center-p3::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--main-color);
  top: 18.5%;
  left: 35%;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 20%);
}
.header-center-p3::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--main-color);
  top: 18.5%;
  right: 35%;
  transform: rotateY(180deg);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 20%);
}
/* ========================================= end general style ================================== */
/* ========================================= start navbar style ================================== */
.icn-hover {
  transition: 0.3s;
}
.nav-span {
  display: none;
}
.icn-hover:hover i {
  color: var(--main-color);
}
.icn-hover:hover .nav-span {
  color: var(--main-color);
}
.btn-hover {
  position: relative;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: #c8f11a;
  border: 3px solid var(--main-color);

  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
}

.btn-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transition: 0.5s;
}

.btn-hover:hover::after {
  left: 120%;
  background-color: #c8f11a;
}
.btn-outline-success:hover {
  background-color: #c8f11a;
  border: 3px solid var(--main-color);
}
/* ========================================= end navbar style ================================== */

/* ========================================= start hero section ( first section ) style ================================== */
.hero-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}
.image-container {
  border: 4px solid var(--main-color);
}
.image-right-hero {
  height: 350px;
}
.hero-btn button {
  width: 40%;
}
.trans-btn {
  border-radius: 10px;
}
.trans-btn:hover {
  background-color: var(--main-color) !important;
  color: black;
}
.abs-div {
  border: 1px solid gray;
  border-radius: 10px;
  transform: translate(-30px, -70px) !important;
}
.abs-info-sec {
  font-size: 0.75rem;
}
/* ========================================= end hero section ( first section ) style ================================== */

/* ========================================= start my games section ( second section ) style ================================== */
.btns {
  width: 50%;
}
.btns-indecators {
  width: 20%;
  height: 50px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border: 2px solid gray;
  border-radius: 50%;
}
.btn-hov:hover {
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
.f-size-span {
  font-size: 0.75rem;
}
.card {
  transition: 0.4s;
  overflow: hidden;
}
.card img {
  transition: 0.4s;
}
.overlay-top {
  transform: translateY(-60px);
  z-index: 999999;
  transition: 0.3s;
}
.overlay-bottom {
  transform: translateY(350px);
  transition: 0.4s;
}
.card:hover .over-card {
  visibility: visible;
  border: 2px solid var(--main-color);
  background-image: linear-gradient(
    rgba(0, 0, 0, 0.00001),
    rgba(255, 255, 255, 0.3),
    rgba(203, 254, 28, 0.5)
  );
  border-radius: inherit;
}
.card:hover .overlay-top {
  transform: translateY(0px);
}
.card:hover .over-card {
  transform: translateY(0);
}
.card:hover .overlay-bottom {
  transform: translateY(220px);
}
.card:hover img {
  transform: scale(1.1);
}
.item-3 {
  display: none;
}
/* ========================================= end my games section ( second section ) style ================================== */

/* ========================================= start what we do section ( third  section ) style ================================== */
.hover-triangle {
  overflow: hidden;
}
.inner-border {
  transition: 0.3s;
  border: 2px solid transparent;
}
.hover-triangle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;

  border-top: 20px solid var(--main-color);
  border-right: 20px solid transparent;

  top: 0;
  left: 0;

  transform: translate(-100%, -100%);
  opacity: 0;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hover-triangle::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;

  border-bottom: 20px solid var(--main-color);
  border-left: 20px solid transparent;

  bottom: 0;
  right: 0;

  transform: translate(100%, 100%);
  opacity: 0;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hover-triangle:hover::after {
  transform: translate(20px, 20px);
  opacity: 1;
}
.hover-triangle:hover::before {
  transform: translate(-20px, -20px);
  opacity: 1;
}
.spn-inner {
  transition: 0.3s;
}
.inner-border:hover {
  border: 2px solid var(--main-color);
}
.inner-border:hover .spn-inner {
  background-color: var(--main-color) !important;
  color: black;
}
.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.row-line {
  position: relative;
}
.row-line::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: -60px;
  left: 25%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--main-color) 20%,
    var(--main-color) 80%,
    transparent
  );
}
/* ========================================= end what we do section ( third  section ) style ================================== */

/* ========================================= start animated section ( forth section ) style ================================== */
.animated {
  background:
    radial-gradient(
      rgba(203, 254, 28, 0.65),
      rgba(203, 254, 28, 0.65),
      transparent 70%
    ),
    #050505 !important;
}

.slider-track {
  width: max-content;
}
.logo-card {
  width: 13vw;
  min-width: 50px;
  max-width: 80px;
  background-color: #111;
}
.move-left {
  animation: moveLeft 90s linear infinite;
}
.move-right {
  animation: moveRight 90s linear infinite;
}
@keyframes moveLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes moveRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}
/* ========================================= end animated section ( forth section ) style ================================== */

/* ========================================= start our team section ( fiveth section ) style ================================== */
.left-info {
  width: 90% !important;
    z-index: 3 !important;

}
.right-info {
  writing-mode: vertical-rl;
  width: fit-content;
    z-index: 3 !important;

}
.right-info p {
  font-size: 0.8rem;
}
.info-image{
  z-index: 3 !important;
}
.team-card {
  position: relative;
  filter: grayscale(100%);
  transition: 0.4s;
  cursor: pointer;
}
.team-card::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.4s;
  z-index: 1;
}
.team-card:hover::after {
  height: 0;
}
.team-card:hover {
  filter: grayscale(0%);
}

/* ========================================= end our team section ( fiveth section ) style ================================== */

/* ========================================= start contact section ( sixth section ) style ================================== */
.contact-section {
  background-color: #0d131f;
}

.contact-box {
  background-color: #202b3b;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background-color: var(--main-color);
  color: #000;
  font-size: 22px;
}

.community-box {
  background: linear-gradient(135deg, var(--main-color), #22e878);
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #050505;
  color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.form-control-dark {
  background-color: #354255;
  border-color: #607086;
  color: #fff;
}

.form-control-dark::placeholder {
  color: #a9b3c2;
}

.form-control-dark:focus {
  background-color: #354255;
  color: #fff;
  border-color: var(--main-color);
  box-shadow: none;
}

.send-btn {
  background-color: var(--main-color);
  color: #000;
}

.send-btn:hover {
  background-color: #b6e817;
  color: #000;
}

/* ========================================= end contact section ( sixth section ) style ================================== */
/* ========================================= start footer section ( last section ) style ================================== */

.footer-link {
  color: #9aa4b2;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--main-color);
}
/* ========================================= end footer section ( last section ) style ================================== */
