@charset "UTF-8";
.container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}

body {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  background-color: #000;
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 26px 16px;
}

.company-icon {
  width: 166px;
  height: 60px;
}

.social-icon-wrapper {
  display: flex;
  gap: 26px;
  margin: 16px 0 16px 16px;
}

.social-icon {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.blue-icon:hover {
  color: #01BAFF;
}

.yellow-icon:hover {
  color: #FFFF00;
}

.main-section {
  position: relative;
  /* width: 1905px; */
  height: 650px;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.main-heading {
  position: absolute;
  right: 192px;
  top: 268px;
  z-index: 3;
  width: 444px;
  height: auto;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.center-image-img {
  max-width: 520px;
  height: auto;
  margin-top: 256px;
}

.main-heading h1 {
  font-size: 68px;
  margin: 0;
}

.main-heading p {
  font-size: 1.5em;
}

.about {
  display: flex;
  background-color: #111;
  gap: 32px;
}

.about .text {
  flex: 1;
  padding: 28px 0px 0px 170px;
}

.about .text h2 {
  font-size: 36px;
  background: linear-gradient(90deg, #fff 1%, #ffd700 8.23%, #01BDFF 28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about .text p {
  font-size: 14px;
  line-height: 1.8;
}

.about img {
  flex: 1;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.mono {
  font-weight: 500;
  color: #01BDFF;
}

.regiter-button-wrap {
  margin-top: 60px;
}

.accordion {
  background-color: transparent;
  color: rgb(var(--color_15));
  cursor: pointer;
  width: 100%;
  border: 1px dashed #01BDFF;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin: 10px 0 10px;
  text-indent: 10px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active-accordion,
.accordion:hover {
  border-style: dashed;
  border-color: #01BDFF;
  outline: none !important;
}

button:focus,
a:focus {
  outline: none !important;
}

.accordion:after {
  content: "+";
  color: #01BDFF;
  font-weight: normal;
  float: right;
  margin-right: 10px;
  font-size: 25px;
}

.active-accordion:after {
  content: "×";
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #efefef;
}

.panel a {
  color: #efefef;
}

.messenger {
  text-align: center;
  color: #01BDFF;
}

.heading-block {
  text-align: center;
  color: #01BDFF;
  padding: 78px 0px 76px 0px;
}

.faq {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}

.question-section {
  padding: 0px 280px 0px 280px;
  background-color: #111;
}

.icon-section {
  background-color: var(--corvid-background-color, var(--bg-overlay-color));
  padding: 56px 0px 40px 0px;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.cyberdome-icon {
  width: 599px;
  height: 116px;
}

.beagle-icon {
  width: 245px;
  height: 93px;
}

.draw-border {
  box-shadow: inset 0 0 0 4px #01BDFF;
  color: #01BDFF;
  transition: color 0.25s 0.0833s;
  position: relative;
}

.draw-border::before,
.draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
}

.draw-border::before {
  bottom: 0;
  right: 0;
  border-bottom-width: 4px;
  border-left-width: 4px;
}

.draw-border::after {
  top: 0;
  right: 0;
  border-top-width: 4px;
  border-right-width: 4px;
}

.draw-border:hover {
  color: #ffd700;
}

.draw-border:hover::before,
.draw-border:hover::after {
  border-color: #ffd700;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}

.draw-border:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}

.btn {
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  padding: 14px 36px;
  letter-spacing: 0.05rem;
  text-decoration: none;
}

.btn:focus {
  outline: 2px dotted #01BDFF;
}

.play-now-btn {
  text-align: center;
  margin-bottom: 46px;
}

#page-content {
  display: flex;
  justify-content: center;
  padding: 42px 0px 60px 0px;
}

.text-light {
  font-size: 36px;
  padding-bottom: 32px;
  display: flex;
  justify-content: center;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: white;
  padding: 56px 16px 0px 16px;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 300px;
}

.company-icon-section {
  height: 50px;
  margin-bottom: 20px;
}

.company-description {
  font-size: 14px;
  line-height: 1.5;
  max-width: 264px;
  margin: 32px 0px 26px 0;
}

.footer-right {
  max-width: 300px;
  text-align: right;
}

.footer-email,
.footer-address {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-line {
  border: none;
  border-top: 1px solid white;
  width: 100%;
  margin: 0;
}

.footer-copyright {
  font-size: 12px;
}

.icon-blue {
  color: #01BAFF;
}

.icon-yellow {
  color: #FFFF00;
}

.footer-icon-wrapper {
  display: flex;
  gap: 14px;
  margin: 16px 0 16px 0px;
}

.copyright-section {
  display: flex;
  flex-direction: row;
  padding: 18px 16px;
  justify-content: end;
  font-size: 12px;
}

.prize-icon {
  width: 69px;
  margin-left: 40px;
}

.challenge-icon {
  width: 69px;
  margin-left: 44px;
}

.brain-icon {
  width: 68px;
  margin-left: 40px;
}

.network-icon {
  font-size: 64px;
  color: #ffd900;
  text-align: start;
  margin-left: 14px;
}

.network-benefit-description {
  margin-top: 16px;
  max-width: 166px;
  text-align: start;
}

.benefits-section {
  text-align: center;
  padding: 68px 20px 20px 20px;
}

.benefits-heading {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #FFFF00;
  text-transform: uppercase;
}

.benefits-content {
  padding: 50px 0px 42px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.benefit-description {
  max-width: 166px;
  text-align: start;
  margin-top: 24px;
}

.benefits-points {
  display: flex;
  flex-direction: row;
  gap: 48px;
}

.benefit-point {
  display: flex;
  flex-direction: column;
}

.image-section {
  position: relative;
  height: 640px;
  background-image: url("/images/ctf-players.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #01BDFF;
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-transform: uppercase;
}

.image-center {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80%;
  height: auto;
  max-width: 920px;
  transform: translateX(-50%);
  z-index: 2;
}

@media screen and (max-width: 1731px) {
  .container {
    padding: 0;
  }
  .center-image-img {
    max-width: 356px;
    margin-top: 382px;
  }
  .main-heading {
    right: 38%;
    top: 200px;
    width: 394px;
  }
}
@media screen and (max-width: 1466px) {
  .about img {
    width: 250px;
    height: 598px;
  }
  .about .text {
    padding: 0px 0px 52px 42px;
  }
}
@media screen and (max-width: 1024px) {
  .main-section {
    height: 90vh;
  }
  .main-heading {
    top: 22%;
    right: 30%;
  }
  .about {
    flex-direction: column;
    padding: 15px;
  }
  .about .text {
    padding: 10px;
  }
  .about img {
    margin: 20px 0;
  }
  .challenge-icon {
    margin-left: 34px;
  }
  .network-icon {
    margin-left: 22px;
  }
  .faq {
    font-size: 22px;
  }
  .question-section {
    padding: 0 15px;
  }
  .icon-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .about img {
    width: 100%;
  }
  .benefits-content {
    flex-direction: column;
    margin-top: 64px;
  }
  .benefits-points {
    flex-wrap: wrap;
    justify-content: center;
  }
  .image-section {
    height: 562px;
  }
}
@media screen and (max-width: 768px) {
  .main-section {
    height: 80vh;
  }
  .main-heading {
    left: 12%;
    top: 25%;
    text-align: center;
    width: 70%;
  }
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .footer-right {
    text-align: center;
  }
  .footer-icon-wrapper {
    justify-content: space-around;
  }
  .about .text {
    padding: 20px;
  }
  .faq {
    font-size: 20px;
  }
  .question-section {
    padding: 0 10px;
  }
  .icon-wrapper {
    gap: 20px;
    flex-wrap: wrap;
  }
  .section-heading {
    font-size: 28px;
    top: 80px;
  }
  .image-center {
    width: 90%;
  }
  .image-section {
    height: 474px;
  }
}
@media screen and (max-width: 566px) {
  .section-heading {
    font-size: 22px;
    top: 70px;
  }
  .image-section {
    height: 364px;
  }
}
@media screen and (max-width: 480px) {
  .main-heading {
    top: 6%;
  }
  .main-section {
    flex-direction: column;
    text-align: center;
  }
  .about {
    flex-direction: column;
    padding: 10px;
  }
  .about .text {
    padding: 10px;
  }
  .faq {
    font-size: 18px;
  }
  .icon-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .company-icon {
    width: 130px;
    height: 60px;
  }
  .social-icon-wrapper {
    gap: 4px;
  }
  .center-image-img {
    max-width: 254px;
    margin-top: 146px;
  }
  .section-heading {
    font-size: 18px;
  }
  .challenge-icon {
    margin-left: 48px;
  }
  .network-icon {
    margin-left: 26px;
  }
  .image-center {
    width: 95%;
  }
  .image-section {
    height: 326px;
  }
  .footer-icon-wrapper {
    justify-content: space-between;
  }
}
@media screen and (max-width: 418px) {
  .image-section {
    height: 290px;
  }
}
@font-face {
  font-family: "social";
  src: url("../font/social.eot?35446672");
  src: url("../font/social.eot?35446672#iefix") format("embedded-opentype"), url("../font/social.woff2?35446672") format("woff2"), url("../font/social.woff?35446672") format("woff"), url("../font/social.ttf?35446672") format("truetype"), url("../font/social.svg?35446672#social") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'social';
    src: url('../font/social.svg?35446672#social') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "social";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-facebook:before {
  content: "\e800";
} /* '' */
.icon-x:before {
  content: "\e801";
} /* '' */
.icon-network:before {
  content: "\e802";
} /* '' */
.icon-instagram-circled:before {
  content: "\f05e";
} /* '' */
.icon-linkedin:before {
  content: "\f0e1";
} /* '' */
.icon-youtube-play:before {
  content: "\f16a";
} /* '' */
.icon-insta:before {
  content: "\f32d";
} /* '' */
.leaderboard-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leaderboard-container {
  width: 70%;
  background-color: #1c1c1e;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 68px;
  color: #ffffff;
  border-radius: 12px;
}

.leaderboard-heading {
  font-size: 36px;
  text-align: center;
  color: #01BDFF;
  margin: 0;
  padding: 52px 0px 52px 0px;
  text-transform: uppercase;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

th {
  background-color: #444;
  font-weight: bold;
  color: #01BDFF;
}

tr:nth-child(even) {
  background-color: #2c2c2e;
}

tr:hover {
  background-color: #3a3a3c;
}

td {
  border-top: 1px solid #333;
}

@media (max-width: 768px) {
  .leaderboard-container {
    width: 90%;
    margin-bottom: 40px;
  }
  .leaderboard-heading {
    font-size: 28px;
    padding: 32px 0px;
  }
  table {
    font-size: 14px;
  }
  th, td {
    padding: 10px;
  }
  .leaderboard td, .leaderboard th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .leaderboard td.team-name {
    white-space: normal;
    word-wrap: break-word;
  }
}
@media (max-width: 480px) {
  .leaderboard-container {
    overflow-x: auto;
  }
  table {
    min-width: 500px;
  }
}

/*# sourceMappingURL=home.css.map */