@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap");

/*   font-family: "Almarai", sans-serif; */

/* Arabic */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

/*   font-family: "Roboto", sans-serif; */

/* English */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/*   font-family: "Bebas Neue", sans-serif; */

/* English - 2 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: auto;
  background-color: #111c32;
}

div.background {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background-image: url("Pictures/2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header {
  height: 80px;
  display: flex;
  justify-content: center;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background-color: transparent;
}

header.active {
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.3);
}

header nav {
  width: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header nav ul {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 40px;
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.3);
}

header nav ul li {
  width: max-content;
  height: 100%;
  list-style: none;
}

header nav ul li a {
  width: max-content;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  color: white;
  font-family: "Almarai", sans-serif;
  /* Arabic */
}

header div.co-menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: none;
}

header div.co-menu button.btn-menu {
  width: max-content;
  height: 100%;
  margin-right: 25px;
  cursor: pointer;
  font-size: 30px;
  color: white;
  border: none;
  background-color: transparent;
}

header div.co-menu div.menu {
  width: 100vw;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  position: fixed;
  top: 60px;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.3);
}

header div.co-menu div.menu.active {
  height: calc(100vh - 60px);
}

header div.co-menu div.menu ul {
  width: 100%;
  height: 100%;
}

header div.co-menu div.menu ul li {
  width: 100%;
  height: auto;
  list-style: none;
}

header div.co-menu div.menu ul li a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  transition: all 0.5s;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  color: white;
  font-family: "Almarai", sans-serif;
  /* Arabic */
}

header div.co-menu div.menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
  header nav {
    display: none;
  }

  header div.co-menu {
    display: flex;
  }
}

main {
  width: 100%;
  height: 800px;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

main div.co-main::before {
  content: "";
  width: 800px;
  height: 800px;
  animation: animation-co-main-before 1s;
  position: absolute;
  top: 50%;
  right: -900px;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.5;
  border-radius: 12px;
  box-shadow: 25px 25px 25px 10px #000;
  backdrop-filter: blur(20px);
  background-color: #111c32;
}

@keyframes animation-co-main-before {
  from {
    transform: rotate(45deg) translateX(2000px);
  }

  to {
    transform: rotate(45deg) translateX(none);
  }
}

main div.co-main {
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

main div.co-main::after {
  content: "";
  width: 400px;
  height: 400px;
  animation: animation-co-main-after 1.1s;
  position: absolute;
  top: 50%;
  right: -250px;
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.3);
}

@keyframes animation-co-main-after {
  from {
    transform: rotate(45deg) translateX(2000px);
  }

  to {
    transform: rotate(45deg) translateX(none);
  }
}

main div.co-main div.left-part::before {
  content: "";
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background-color: white;
  background-image: url("Pictures/3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main div.co-main div.left-part {
  width: 400px;
  height: 400px;
  overflow: hidden;
  animation: animation-co-main-left-part 1s;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: -25px 25px 25px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
}

@keyframes animation-co-main-left-part {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

main div.co-main div.left-part h1 {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 15px;
  user-select: none;
  font-size: 25px;
  text-align: start;
  text-shadow: 0 0 10px white;
  text-shadow: 0 0 20px white;
  text-shadow: 0 0 30px white;
  text-shadow: 0 0 40px white;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  /* English - 2 */
}

main div.co-main div.left-part p {
  width: 100%;
  height: 50px;
  padding-left: 15px;
  user-select: none;
  text-align: start;
  color: white;
  font-family: "Almarai", sans-serif;
  /* Arabic */
}

main div.co-main div.left-part p span {
  text-shadow: 0 0 10px white;
}

main div.co-main div.left-part div.box-btn {
  width: 100%;
  min-height: 50px;
  height: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

main div.co-main div.left-part div.box-btn a {
  width: 170px;
  height: auto;
  transition: all 0.5s;
  padding: 4px 10px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  border-radius: 6px;
  color: white;
  background-color: #111c32;
  font-family: "Almarai", sans-serif;
  /* Arabic */
}

main div.co-main div.left-part div.box-btn a.btn-youtube:hover {
  box-shadow: 0 0 25px 5px red;
  color: white;
  background-color: red;
}

main div.co-main div.left-part div.box-btn a.btn-discord:hover {
  box-shadow: 0 0 25px 5px #707cf5;
  color: white;
  background-color: #707cf5;
}

main div.co-main div.right-part::before {
  content: "";
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  animation: animation-co-main-right-part-before 5s infinite linear;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  filter: blur(30px);
  background-image: conic-gradient(#4273d4, black);
}

@keyframes animation-co-main-right-part-before {
  from {
    transform: translate(-50%, -50%) perspective(1000px) rotateX(20deg) rotateY(-20deg) rotateZ(0deg);
  }

  to {
    transform: translate(-50%, -50%) perspective(1000px) rotateX(20deg) rotateY(-20deg) rotateZ(360deg);
  }
}

main div.co-main div.right-part {
  width: auto;
  height: auto;
  animation: animation-co-main-right-part 1s forwards;
  animation-delay: 1s;
  opacity: 0;
  position: relative;
  z-index: 1;
}

@keyframes animation-co-main-right-part {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

main div.co-main div.right-part img {
  width: 300px;
  transition: all 0.5s;
  transform: perspective(1000px) rotateX(20deg) rotateY(-20deg);
}

main div.co-main div.right-part img:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(-0deg);
}

main div.co-main div.right-part img:hover div.right-part::before {
  transform: translate(-50%, -50%) perspective(1000px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

@media (max-width: 1040px) {
  main {
    height: 600px;
    min-height: 600px;
  }

  main div.co-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  main div.co-main div.left-part {
    text-align: center;
  }

  main div.co-main div.left-part p {
    text-align: center;
  }

  main div.co-main div.right-part {
    display: none;
  }

  main div.co-main::before {
    display: none;
  }

  main div.co-main::after {
    display: none;
  }
}

@media (max-width: 500px) {
  main div.co-main div.left-part {
    width: 90%;
  }

  main div.co-main div.left-part div.box-btn {
    height: 150px;
    flex-direction: column;
  }

  main div.co-main div.left-part div.box-btn a {
    width: 90%;
  }
}

div.co-wave {
  height: 0px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

div.co-wave svg.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

div.co-wave svg.waves g.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

div.co-wave svg.waves g.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

div.co-wave svg.waves g.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

div.co-wave svg.waves g.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

div.co-wave svg.waves g.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
  svg.waves {
    height: 40px;
    min-height: 40px;
  }
}

div.box-views {
  width: auto;
  min-width: 40px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 25px;
  left: 25px;
}

div.box-views i {
  color: white;
}

div.box-views div.views {
  color: white;
  font-family: "Roboto", sans-serif;
  /* English */
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: #111c32;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #4273d4;
}