@font-face {
  font-family: "Monadi-Regular";
  src: url("../font/monadi.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "League Gothic";
  src: url("../font/league_gothic_font.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #b7b7b7;
}
::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 20px;
}

img,
video {
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  background: url("../images/background.webp");
  font-family: "Monadi-Regular", sans-serif;
  background-position: center;
  background-size: cover;
}

.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transition: 0.4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  border-radius: 20px;
  bottom: 2px;
  z-index: 2;
  background: #000;
  transition: 0.4s;
}

.sun button {
  position: absolute;
  top: 7px;
  left: 36px;
  z-index: 1;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  font-family: monospace;
  background: transparent;
  font-size: 1.1rem;
}

.moon button {
  position: absolute;
  top: 7px;
  left: 8px;
  z-index: 1;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  font-family: monospace;
  background: transparent;
  font-size: 1.1rem;
}
div#language-switch {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon_media {
  display: flex;
  align-items: center;
  gap: 7px;
}
.icon_media img {
  width: 2rem;
}
.right_left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

header {
  display: flex;
  justify-content: space-between;
  background: #000;
  padding: 10px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99999;
  align-items: center;
}
header .logo {
  color: #fdfdfd;
  z-index: 999;
}
header .logo img {
  width: 4rem;
}
header .nav-container nav {
  display: flex;
}
header .nav-container nav a {
  margin-right: 2rem;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
header .nav-container .icon-container {
  cursor: pointer;
}
header .nav-container .icon-container #webapp_cover {
  width: 30px;
  margin: 0 auto;
}
header .nav-container .icon-container #menu_button {
  width: 30px;
  overflow: hidden;
}
header .nav-container .icon-container #menu_checkbox {
  display: none;
}
header .nav-container .icon-container #menu_label {
  position: relative;
  display: block;
  height: 2rem;
  cursor: pointer;
}
header .nav-container .icon-container #menu_label:before,
header .nav-container .icon-container #menu_label:after,
header .nav-container .icon-container #menu_text_bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
header .nav-container .icon-container #menu_label:before,
header .nav-container .icon-container #menu_label:after {
  content: "";
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
}
header .nav-container .icon-container #menu_label:before {
  top: 0;
}
header .nav-container .icon-container #menu_label:after {
  top: 8px;
}
header .nav-container .icon-container #menu_text_bar {
  top: 16px;
}
header .nav-container .icon-container #menu_text_bar:before {
  content: "×";
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  text-align: center;
}
header
  .nav-container
  .icon-container
  #menu_checkbox:checked
  + #menu_label:before {
  left: 0;
}
header
  .nav-container
  .icon-container
  #menu_checkbox:checked
  + #menu_label:after,
header
  .nav-container
  .icon-container
  #menu_checkbox:checked
  + #menu_label:before {
  left: 39px;
}
header
  .nav-container
  .icon-container
  #menu_checkbox:checked
  + #menu_label
  #menu_text_bar:before {
  animation: moveUpThenDown 0.8s ease 0.2s forwards,
    shakeWhileMovingUp 0.8s ease 0.2s forwards,
    shakeWhileMovingDown 0.2s ease 0.8s forwards;
}
header
  .nav-container
  .icon-container
  #menu_checkbox:checked
  + #menu_label
  #menu_text_bar {
  height: 0;
}
@keyframes moveUpThenDown {
  0% {
    top: 0;
  }
  50% {
    top: -1.5rem;
  }
  100% {
    top: -1rem;
  }
}
@keyframes shakeWhileMovingUp {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  50% {
    transform: rotateZ(0deg);
  }
  75% {
    transform: rotateZ(10deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes shakeWhileMovingDown {
  0% {
    transform: rotateZ(0);
  }
  80% {
    transform: rotateZ(3deg);
  }
  90% {
    transform: rotateZ(-3deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
header .desktop .item {
  display: inline-block;
}
header .desktop .icon-container {
  display: none;
}
header .tablet .item {
  display: none;
}
header .tablet .icon-container {
  display: inline-block;
}
header .icon-active {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: #000;
  right: 0;
  top: 0;
}
header .icon-active .icon-container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
header .icon-active nav {
  margin-top: 5rem;
  flex-direction: column;
  align-items: flex-start;
}
header .icon-active nav .item {
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: bold;
}
/* end header */

/* connect_us */
.contact-form {
  width: 25rem;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff45;
  border-radius: 1rem;
  box-shadow: 0 0 5px #fff;
}
.contact-form .form-group {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
}
.contact-form p {
  color: #000;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
p.dir {
  direction: ltr;
}
.contact-form .form-group img {
  width: 1rem;
  vertical-align: middle;
}

/* end connect_us */

.content {
  width: 100%;
  height: 90vh;
  position: relative;
}
.content img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.all_content_text {
  width: 100%;
  height: 100%;
  background: #00000040;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 999;
}
.content_text {
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  padding: 1rem;
  border-radius: 1rem;
  height: 50%;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.registration-form p {
  color: #270;
  background: #dff2bf;
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px;
  font-size: 1rem;
}

.signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.content_text .signup a.items {
  color: #fff;
  border: 2px solid #fff;
  padding: 0 1rem;
  width: 15rem;
}

.content_text .signup a.items:hover {
  border: 2px solid #000;
}

.description {
  width: 95%;
  margin: 1rem auto;
}

/* registration-form */
.registration-form {
  width: 25rem;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff45;
  border-radius: 1rem;
  box-shadow: 0 0 5px #fff;
}

.registration-form .form-group,
.registration-form h2 {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
}

.registration-form .form-group label {
  display: block;
  font-weight: bold;
}

.registration-form .form-group input[type="text"],
.registration-form .form-group input[type="number"],
.registration-form .form-group input[type="tel"],
.registration-form .form-group input[type="email"],
.registration-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border-bottom: 4px solid #ccc;
  border-radius: 5px;
}

.registration-form input[type="submit"] {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.registration-form input[type="submit"]:hover {
  background: #ccc;
  color: #000;
}

.registration-form textarea {
  resize: none;
  width: 100%;
  height: 5rem;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-top: 5px;
  overflow: auto;
}
/* END registration-form */

footer {
  width: 100%;
  padding: 1rem 0;
  background: #fff;
  text-align: center;
  font-weight: bold;
}

/* data_buttons */
.data_buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 3rem auto;
  gap: 2rem;
}
.item_data {
  width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
}
.item_data img {
  border-radius: 0.5rem;
  box-shadow: 0 0 4px 4px #000;
}
.item_data a {
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 4px solid #fff;
  color: #fff;
}
.item_data h3 {
  font-size: 1.3rem;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* END data_buttons */
iframe.note-video-clip {
  max-width: 100% !important;
}

.Allofficial_teams {
  display: flex;
  width: 90%;
  margin: 2rem auto;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
.official_teams {
  width: 20rem;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: rtl;
}
.official_teams img {
  width: 7rem;
  border-radius: 10px;
}
.official_teams .official_team_item {
  width: 75%;
}
.official_teams .official_team_item h2 {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
h2.h2_1 {
  font-family: "League Gothic", sans-serif;
}

@media screen and (max-width: 1023px) {
  .contact-form {
    width: 20rem;
  }
  .content_text {
    height: 70%;
    width: 100%;
  }
  .content_text .signup a.item {
    font-size: 13px;
  }
  .registration-form {
    width: 20rem;
    gap: 0.5rem;
  }
  .content_text .signup a.items {
    width: 10rem;
  }
  .content_text .signup a.items {
    padding: 0.7rem;
  }
}
