@import url('https://fonts.googleapis.com/css2?family=Victor+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-color: linear-gradient(rgb(86 93 39), rgb(228 255 51 / 22%), rgb(201 255 44 / 22%));
  --text-color: rgba(255, 255, 255, 1);
  --main-color: rgb(168 238 6);
  --button-bg-hover: rgb(218 219 43);
  --footer-color: rgba(17, 17, 17, 1);
  --nav-bg-color: rgba(30, 30, 30, 1);
  --gray: rgba(49, 49, 49, 1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mt60 {
  margin-top: 60px !important;
}

body {
  font-family: 'Victor Mono', monospace;
  background-color: rgba(11, 11, 11, 1);
  color: var(--text-color);
  overflow-x: hidden;
}

.body-content {
  position: relative;
  z-index: 2;
  background: var(--bg-color);
}

header,
main,
footer {
  position: relative;
  z-index: 10;
}

.bg-image-1,
.bg-image-2,
.bg-image-3,
.bg-image-4 {
  position: absolute;
  z-index: 99;
}

.bg-image-1 {
  left: 0;
  top: 0;
}

.bg-image-2 {
  right: 0;
  top: 0;
}

.bg-image-3 {
  right: 0;
  top: 1100px;
}

.bg-image-4 {
  left: -130px;
  top: 1400px;
}

.toggle-body {
  overflow-y: hidden;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--main-color);
}

h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--main-color);
}

h3 {
  font-size: 232x;
  font-weight: 700;
  color: var(--main-color);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 23.68px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom: 2px solid var(--main-color);
}

button {
  outline: none;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 20px;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  min-width: 189px;
  min-height: 38px;
}

.text-center {
  text-align: center;
}

.burger-navigation {
  display: none;
  width: 27px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.burger-navigation span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--main-color);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger-navigation span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

.burger-navigation span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

.burger-navigation span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}

.burger-navigation.open span {
  background: var(--footer-color);
}

.burger-navigation.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.burger-navigation.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.burger-navigation.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
  left: 8px;
}

.navigation-left {
  display: flex;
  align-items: center;
  justify-content: start;
}

.logo span {
  color: var(--main-color);
  font-size: 19px;
  font-weight: 700;
}

.navigation {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--text-color);
  transition: all 0.4s;
  position: absolute;
  left: 77px;
  top: 50px;
  z-index: 100;
  border: 1px solid var(--main-color);
  background-color: var(--nav-bg-color);
  border-radius: 24px;
  padding: 20px 0px;
  min-height: 719px;
  overflow: hidden;
}

.navigation-controls {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0px 20px;
}

.middle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.middle-btn button {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px 32px;
  margin: 20px 0px;
  border-radius: 30px;
}

.navigation-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 26px 16px 26px 26px;
  width: 100%;
  cursor: pointer;
}

.navigation-list {
  display: flex;
  flex-direction: column;
  padding: 42px 0px;
  transition: all 0.4s;
  width: 100%;
}

.active {
  position: relative;
  background-color: var(--main-color);
  padding: 16px 16px 16px 24px;
}

.active a {
  color: white !important;
}

.active svg path {
  fill: white;
}

.navigation-toggle {
  display: flex !important;
  position: absolute;
  align-items: start;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 100;
  background-color: var(--main-color) !important;
  padding: 31px 15px;
  width: 100%;
  height: 120vh;
}

.navigation-toggle .navigation-list {
  display: flex;
  border: none;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  left: 0 !important;
  padding: 0px 20px;
  background: transparent;
}

.navigation-toggle .navigation-list a {
  display: block;
  width: 100%;
  padding: 16px 10px;
  text-align: center;
  color: var(--gray);
}

.navigation-toggle .navigation-list .active {
  background-image: none;
}

.navigation-toggle .navigation-list svg {display: none;}

.navigation-toggle .navigation-list .navigation-list-item {
  padding: 0;
  margin-top: 30px;
}

.navigation-toggle .logo {
  display: none;
}

.navigation-toggle .active {
  background-color: var(--gray);
  border-radius: 10px;
  padding: 0px;
}

.navigation-toggle .active a {
  color: var(--text-color) !important;
}

.navigation-controls-toggle .logo {
  display: none;
}

.navigation-controls-toggle {
  justify-content: end !important;
  padding: 0px 20px;
}

.navigation a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--main-color);
}

.navigation-right {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 37px;
  margin-bottom: 20px;
}

.login-btn {
  background: linear-gradient(var(--nav-bg-color), var(--nav-bg-color)) padding-box, var(--main-color) border-box;
  border: 1px solid transparent;
}

.login-btn:hover {
  background: var(--main-color);
  color: var(--text-color);
}

.login-btn:hover svg path {
  fill: var(--text-color);
}

.register-btn {
  border: none;
  color: var(--text-color);
  background: var(--main-color);
}

.register-btn:hover {
  background: var(--button-bg-hover);
}

main {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner {
  max-width: 1013px;
  margin: 50px 20px 48px 20px;
  position: relative;
  left: 19%;
  max-width: 600px;
}

.banner img {
  width: 94%;
  height: auto;
  border-radius: 20px;
  border: 2px solid var(--main-color);
}

.center-site {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0px 20px;
  max-width: 1013px;
}

.site {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  left: 14%;
  padding-right: 6%;
}

.site-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
}

.site-section p span {
  color: var(--main-color);
  text-decoration: underline;
}

.site-section ul,
.site-section ol {
  margin-left: 29px;
}

.site-section ul li,
.site-section ol li {
  margin: 15px;
}

.middle-banner {
  max-width: 500px;
  margin: 8px 0px;
}

.middle-banner img {
  width: 100%;
  height: auto;
}

.center-site img {
  display: block;
  max-width: 100%;
  margin: 15px auto;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
}

.table .table-row:nth-child(odd) {
  background-color: var(--main-color);
}

.table .table-row:nth-child(even) {
  padding: 35px 20px;
}

.table-row p {
  font-size: 18px;
  font-weight: 400;
  color: white;
}

.table-row div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 63px;
  background-color: var(--footer-color);
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content span {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  opacity: 50%;
}

.mobile {
  display: none;
}

.desktop {
  display: flex;
}

@media (max-width: 1420px) {
  .navigation {
    left: 0;
  }
}

@media (max-width: 1230px) {
  .navigation {
    left: -150px;
  }

  .banner {
    margin-bottom: 0px;
  }

  .banner,
  .site {
    left: 4%;
  }

  .navigation:hover .navigation-list-item a {
    display: block;
  }

  .navigation:hover .navigation-list-item {
    justify-content: center !important;
  }

  .navigation:hover {
    left: 0;
  }

  .navigation-list-item a,
  .login-btn span,
  .register-btn span {
    display: none;
  }

  .login-btn,
  .register-btn {
    justify-content: end;
  }

  .navigation-list-item {
    justify-content: end;
    padding-right: 48px;
  }

  .navigation:hover .login-btn,
  .navigation:hover .register-btn,
  .navigation:hover .navigation-list-item {
    justify-content: start !important;
  }


  .navigation:hover .navigation-list-item,
  .navigation:hover .login-btn span,
  .navigation:hover .register-btn span {
    display: flex;
  }

  .navigation:hover .navigation-list-item {
    justify-content: center;
  }
}

@media (max-width: 1130px) {
  header {
    border-bottom: 1px solid var(--main-color);
  }
  
  .navigation {
    top: 0;
    left: 0;
    border: none;
    background: none;
    width: 100%;
    border-radius: 0px;
    min-height: 80px;
  }

  .navigation-controls {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .burger-navigation {
    display: flex;
  }

  .banner {
    margin-top: 60px;
  }

  button {
    padding: 10px 16px;
    font-size: 12px;
    justify-content: center !important;
  }

  button span {
    display: block !important;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .table-row p {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  header {
    z-index: 105;
  }

  .navigation-left {
    width: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 101;
  }

  div.logo {
    order: 1;
  }

  div.burger-navigation {
    order: 2;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .mobile button {
    color: var(--text-color);
  }

  .mobile .login-btn {
    margin-top: 20px;
    background: var(--gray);
    border: none;
  }

  .navigation-right {
    width: calc(100% - 30px);
    margin-right: 0;
  }

  main {
    top: 20px;
  }

  .register-btn {
    margin-top: 13px;
  }

  .site {
    left: 0;
    padding-right: 0px;
  }

  .banner {
    left: 0;
  }

  .banner img {
    width: 100%;
  }

  .navigation-right button {
    width: 100%;
  }

  .table-row {
    flex-direction: column;
    gap: 15px;
  }

  .table-row .mobile {
    font-size: 16px;
    font-weight: 600;
  }

  .navigation-list {
    display: none;
    margin-top: 15px;
  }

  .navigation-toggle .navigation-list {
    padding: 0;
  }

  .bg-image-1,
  .bg-image-2,
  .bg-image-3,
  .bg-image-4 {
    display: none;
  }

  button svg {
    display: none;
  }
}

@media (max-width: 640px) {    
  .body-content {background: none;}

  .middle-btn button {
    width: 100%;      
  }
}


.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 15px;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
  padding: 5px 5px;
  border: 1px solid #ddd;
  text-align: left;
}

.responsive-table th {
  background-color: #f4f4f4;
  font-weight: bold;
  color: black;
}