* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.pre-loader {
  position: relative;
  height: 40px;
  width: 100%;
  top: 0;
  left: 0;
}

.pre-loader .pre-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #27FD61;
  color: black;
}

.pre-loader .pre-content img {
  display: inline-block;
  width: 100%;
}

.pre-loader .pre-content p {
  font-size: 24px;
  line-height: 40px;
}

.main {
  -webkit-animation: fade 0.5s linear;
          animation: fade 0.5s linear;
}

video {
  position: fixed;
  left: 0;
  top: 0%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -6;
}

@media (max-width: 768px) {
  video {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content {
  font-size: 40px;
}

.container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: visible;
}

.img-box {
  width: 150px;
}

.img-box img {
  width: 100%;
  vertical-align: middle;
  cursor: pointer;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  color: white;
}

.section {
  color: black;
  min-height: 100vh;
}

.main-btn {
  position: relative;
  width: 100px;
  margin-top: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-btn:hover .btn {
  -webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
          clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-btn:hover span {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-btn .btn {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 24px;
  color: black;
  text-align: center;
  background: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  z-index: 2;
  height: 50px;
  line-height: 24px;
  width: 200px;
}

.main-btn span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #27FD61;
  -webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
          clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
  height: 50px;
  width: 200px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.heading {
  font-size: 40px;
  text-align: center;
  margin: 40px;
  position: relative;
  z-index: 2;
  color: white;
}

.heading::before {
  content: attr(data-target);
  font-size: 20px;
  position: absolute;
  top: -40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #27FD61;
  text-transform: uppercase;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.card {
  position: relative;
  width: 200px;
  height: 300px;
  font-size: 20px;
  margin: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.card:hover {
  -webkit-box-shadow: 0 10px 20px rgba(255, 255, 255, 0.13);
          box-shadow: 0 10px 20px rgba(255, 255, 255, 0.13);
}

.card:hover::after {
  opacity: 0;
}

.card h3 {
  z-index: 2;
  text-align: center;
}

.hover-card {
  margin: 40px;
}

.hover-card:hover .card1 {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.hover-card:hover .card-inner {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.card1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 50px;
  font-style: italic;
  background: white;
  color: black;
  font-size: 20px;
  margin: 20px 10px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  overflow: visible;
  z-index: 2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.card-inner {
  font-size: 30px;
  line-height: 49px;
  font-style: italic;
  text-align: center;
  position: absolute;
  height: 49px;
  width: 160px;
  background: #27FD61;
  top: 1px;
  right: 0;
  z-index: 1;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 70% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 70% 100%, 0% 100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.fixed-nav {
  position: fixed;
  bottom: 10%;
  right: 10%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  -webkit-animation: fade 0.5s linear;
          animation: fade 0.5s linear;
  z-index: 199;
}

.fixed-nav:hover {
  -webkit-box-shadow: 0 2px 10px white;
          box-shadow: 0 2px 10px white;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.fixed-nav.active {
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.fixed-nav .img-box {
  background: #12A66D;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.fixed-nav .img-box img {
  -webkit-transform: scale(2);
          transform: scale(2);
}

body {
  background: black;
  color: white;
  height: 1100px;
  font-family: 'Lato', sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.575);
  opacity: 0.9;
}

header {
  position: relative;
}

.header {
  background: #274A46;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}

.header .header-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px;
}

.header .header-text h1 {
  margin-right: 20px;
  font-size: 2.5em;
}

.header .header-text p {
  text-transform: capitalize;
  font-size: 1.2em;
}

.header .img-box {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -15%);
          transform: translate(-50%, -15%);
}

.header .img-box img {
  -webkit-animation: popup;
          animation: popup;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes popup {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.header .hamburger-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30%;
  right: 5%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid transparent;
}

.header .hamburger-btn.open {
  border: 2px solid white;
}

.header .hamburger-btn.open span {
  background: white;
}

.header .hamburger-btn.open span::before {
  width: 50%;
  background: white;
}

.header .hamburger-btn.open span::after {
  width: 50%;
  background: white;
}

.header .hamburger-btn span {
  position: absolute;
  width: 80%;
  top: 48%;
  left: 4px;
  height: 3px;
  background: black;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header .hamburger-btn span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 10px;
  right: 0;
  background: black;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header .hamburger-btn span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 10px;
  right: 0;
  background: black;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header {
  position: relative;
}

header .nav {
  position: relative;
  background: #27FD61;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
  z-index: 1;
}

header .nav.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}

header .nav ul li:hover a {
  background: white;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

header .nav ul li a {
  display: inline-block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 1.4rem;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  color: black;
}

header .achivement {
  width: 100%;
  position: absolute;
  font-size: 20px;
  bottom: -1%;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: none;
}

header .achivement .d-container {
  position: relative;
  border: 2px solid white;
  height: 100%;
  width: 100%;
  top: 2px;
}

header .achivement .d-container .d-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 45px;
}

header .achivement .d-container .d-desc {
  font-size: 1.5rem;
  margin: 0 40px 0 10px;
}

header .achivement .d-container .d-break {
  margin: 0 100px;
}

header .achivement h3 {
  font-size: 36px;
}

header .achivement p {
  font-size: 24px;
  line-height: 50px;
  margin-left: 20px;
  width: 500px;
}

.banner {
  border: 2px solid white;
  position: relative;
  background: rgba(0, 0, 0, 0.774);
}

.banner.section {
  min-height: 83.5vh;
}

.banner::before {
  content: "";
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg banner111.jpg") no-repeat center center/cover;
  z-index: -1;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .banner::before {
    background: url("../img/ocean.jpg");
  }
}

.banner::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg1111.jpg") no-repeat center center/cover;
  z-index: -1;
  opacity: 0.8;
}

.banner .content {
  padding: 0 40px;
  color: white;
}

.banner .content h6 {
  font-size: 16px;
}

.banner .content h4 {
  font-size: 24px;
  letter-spacing: 5px;
}

.banner .img-box {
  width: 400px;
}

.about .about-text {
  width: 100%;
}

.about .about-heading {
  font-size: 40px;
  text-align: center;
  margin: 40px;
  position: relative;
}

.about .about-heading::before {
  content: attr(data-target);
  font-size: 20px;
  position: absolute;
  top: -40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #27FD61;
  text-transform: uppercase;
}

.about .bio-data {
  overflow: visible;
  width: 100%;
  padding: 40px;
}

.about .bio-data .bio-info {
  position: relative;
  width: 100%;
  overflow: visible;
}

.about .bio-data .bio-info.flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about .bio-data .hover-card {
  position: relative;
}

.about .bio-data .img-box {
  width: 500px;
  border: 2px solid white;
  padding: 10px;
}

.about .bio-data .img-box:hover span {
  opacity: 1;
}

.about .bio-data .img-box p {
  font-size: 24px;
  color: white;
}

.about .bio-data .img-box a {
  position: relative;
  color: #fff7f7;
  margin-left: 10px;
}

.about .bio-data .img-box a span {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  background: white;
  opacity: 0;
}

.about .bio-data .img-box img {
  width: 350px;
  border: 2px solid white;
}

.yt {
  position: relative;
}

.yt.flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.yt .yt-video {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  width: 100%;
  margin-top: 80px;
}

.yt .yt-video .yt-last-vid {
  padding: 0 2rem;
  width: 100%;
}

.yt .yt-video .yt-last-vid:hover {
  -webkit-box-shadow: 0 2px 10px #27FD61;
          box-shadow: 0 2px 10px #27FD61;
}

.yt .yt-video .yt-last-vid p {
  text-align: center;
  color: white;
  text-transform: capitalize;
  font-size: 24px;
  margin: 20px;
}

.yt .yt-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin-top: 180px;
}

.yt .yt-links .main-btn {
  margin: 20px 60px;
  width: auto;
}

.yt .yt-links .main-btn .btn {
  width: 300px;
  margin: 0;
}

.yt .yt-links .main-btn span {
  width: 300px;
}

.yt .yt-links .main-btn h3 {
  font-size: 1.5rem;
}

.games.flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.games .filter span {
  padding: 10px 30px;
  margin: 0 20px 40px 0;
  font-size: 20px;
  display: inline-block;
  background: #12A66D;
  text-align: center;
  cursor: pointer;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.games .filter span:hover:not(.active) {
  -webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
          clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
}

.games .filter span.active {
  background: #27FD61;
  color: black;
}

.games .games-list .games-list-ilem.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fade 0.3s linear;
          animation: fade 0.3s linear;
}

@-webkit-keyframes fade {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

.games .games-list .games-list-ilem.hide {
  display: none;
}

.games .games-list .games-list-ilem:nth-child(1) {
  background: url("../img/gifs/ff.gif") no-repeat center center/cover;
}

.games .games-list .games-list-ilem:nth-child(2) {
  background: url("../img/gifs/cod.gif") no-repeat center center/cover;
  color: white;
}

.games .games-list .games-list-ilem:nth-child(3) {
  background: url("../img/gifs/pubg.gif") no-repeat center center/cover;
  color: white;
}

.games .games-list .games-list-ilem:nth-child(4) {
  background: url("../img/gifs/minecraft.gif") no-repeat center center/cover;
  color: white;
}

.games .games-list .games-list-ilem:nth-child(5) {
  background: url("../img/gifs/gta.gif") no-repeat center center/cover;
}

.games .games-list .games-list-ilem:nth-child(6) {
  background: url("../img/gifs/gi.gif") no-repeat center center/cover;
  color: white;
}

.games .games-list .games-list-ilem:nth-child(7) {
  background: url("../img/gifs/zc.gif") no-repeat center center/cover;
}

.games .games-list .games-list-ilem:nth-child(8) {
  background: url("../img/gifs/pokemon.gif") no-repeat center center/cover;
  color: white;
}

.contact .hidden {
  visibility: hidden;
  height: 0;
}

.contact .info {
  color: white;
  text-align: center;
}

.contact .info h2 {
  margin: 40px;
  font-size: 1.5rem;
  background: #274A46;
  padding: 10px 30px;
  border-radius: 5px;
}

.contact .info p {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 1.2rem;
  background: #274A46;
  padding: 10px 30px;
  border-radius: 5px;
}

.contact.flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact.flex .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}

.contact.flex .contact-content .icon-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact.flex .contact-content .icon-links a {
  display: inline-block;
  margin: 40px 20px;
  position: relative;
  color: white;
  font-size: 24px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
}

.contact.flex .contact-content .icon-links a span {
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #27FD61;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.contact.flex .contact-content .icon-links a:hover span {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.contact.flex .contact-content .icon-links a:hover {
  color: #27FD61;
}

.contact.flex .contact-content .contact-form {
  position: relative;
  width: 500px;
  margin-left: 50px;
}

.contact.flex .contact-content .contact-form form {
  width: 100%;
}

.contact.flex .contact-content .contact-form form .form-item {
  position: relative;
  width: 100%;
  margin: 20px 0 10px 0;
}

.contact.flex .contact-content .contact-form form .form-item label {
  padding: 20px 0;
  font-size: 24px;
  position: relative;
  bottom: 5px;
  color: white;
}

.contact.flex .contact-content .contact-form form .form-item input:not(.submit), .contact.flex .contact-content .contact-form form .form-item textarea {
  text-align: left;
  width: 100%;
  color: #f0ecec;
  font-size: 20px;
  outline: none;
  background: none;
  border: none;
  border-bottom: 5px solid #27FD61;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.contact.flex .contact-content .contact-form form .form-item input:not(.submit):focus, .contact.flex .contact-content .contact-form form .form-item textarea:focus {
  border: 5px solid #27FD61;
}

.contact.flex .contact-content .contact-form form .form-item input {
  display: inline-block;
  height: 50px;
}

.contact.flex .contact-content .contact-form form .form-item textarea {
  max-height: 200px;
  max-width: 500px;
}

.contact.flex .contact-content .contact-form form .form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact.flex .contact-content .contact-form form .submit {
  width: 40%;
  background: #27FD61;
  text-align: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: black;
  outline: none;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.contact.flex .contact-content .contact-form form .submit:hover {
  background: white;
  color: #27FD61;
}

.copyright {
  text-align: center;
  height: auto;
  background: black;
  color: white;
  font-size: 20px;
}

.copyright a {
  color: #27FD61;
}
/*# sourceMappingURL=style.css.map */