*, *::after, *::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Mukta', sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #0A0C10;
  background-image: radial-gradient(circle, rgba(227, 29, 34, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
}


img, svg {
  display: block;
  width: 100%;
}

a {
  color: #EDF1F7;
  text-decoration: none;
}

p {
  color: #959698;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 140%;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  height: 80vh;
  margin: 0 auto;
  padding: 8px 16px;
  overflow: unset;
}

@media screen and (max-width: 960px) {
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    overflow: hidden;
  }
}

.container-item-1 {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 576px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.w-auto {
  width: auto;
}

.bg-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(225deg, #EA1D22 0%, #B31317 100%);
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 999;
}

.bg-loader svg {
  max-width: 144px;
}

.bg-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-video::after {
  content: '';
  background: linear-gradient(110deg, #0A0C10 25%, rgba(11, 12, 16, 0.8) 50%, #0A0C10 70%);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.spiderman {
  width: 135%;
  -webkit-transform: translate3d(-170px, 0, 0);
          transform: translate3d(-170px, 0, 0);
}

@media screen and (max-width: 960px) {
  .spiderman {
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.btn {
  display: inline-block;
  background: linear-gradient(225deg, #EA1D22 0%, #831317 100%);
  padding: 12px 32px;
  border-radius: 3px;
  -webkit-transform: skew(-10deg);
          transform: skew(-10deg);
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.btn::after {
  content: '';
  display: block;
  width: 30%;
  height: 70%;
  position: absolute;
  top: -2px;
  left: -2px;
  border-radius: 3px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  opacity: 0;
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.btn::before {
  content: '';
  display: block;
  width: 30%;
  height: 70%;
  position: absolute;
  bottom: -2px;
  right: -2px;
  border-radius: 3px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  opacity: 0;
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.btn:hover {
  -webkit-transform: skewX(-10deg) scale(1.05);
          transform: skewX(-10deg) scale(1.05);
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  display: inline-block;
  padding: 10px 32px;
  border: 2px solid #EA1D22;
  border-radius: 3px;
  -webkit-transform: skew(-10deg);
          transform: skew(-10deg);
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.btn-secondary::after {
  content: '';
  background: linear-gradient(225deg, #EA1D22 0%, #831317 100%);
  display: block;
  width: 0%;
  height: 103%;
  border-radius: 3px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.btn-secondary:hover::after {
  width: 101%;
}

header {
  width: 100%;
  padding-top: 16px;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
}

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

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 24px;
}

@media screen and (max-width: 960px) {
  .nav-list {
    display: none;
  }
}

.logo {
  max-width: 88px;
}

.nav-link {
  display: inline-block;
  color: #959698;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  top: -40px;
  left: 50%;
  width: 2px;
  height: 0px;
  background: linear-gradient(359.94deg, #E11C21 0.06%, rgba(225, 28, 33, 0) 101.91%);
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.nav-link:hover {
  color: #F4F7FB;
}

.nav-link:hover::after {
  height: 40px;
}

.hashtag {
  color: #EA1D22;
  font-style: italic;
}

.nav-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-social svg {
  width: 24px;
  margin-left: 16px;
  cursor: pointer;
}

.nav-social svg path, .nav-social svg circle {
  -webkit-transition: .7s ease;
  transition: .7s ease;
}

.nav-social svg:hover path, .nav-social svg:hover circle {
  fill: #F02A2F;
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
}

@media screen and (max-width: 960px) {
  .nav-social {
    display: none;
  }
}

.bx {
  display: none;
}

@media screen and (max-width: 960px) {
  .bx {
    display: block;
    background-color: #EDF1F7;
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }
}

.logo-spiderman {
  fill: transparent;
  -webkit-animation: logo-spiderman 12s ease infinite alternate;
          animation: logo-spiderman 12s ease infinite alternate;
}

@-webkit-keyframes logo-spiderman {
  0% {
    stroke-width: 0;
    stroke-dasharray: 1 100;
    fill: transparent;
    opacity: 0;
  }
  25% {
    stroke-width: 0.7;
    stroke-dasharray: 100 0;
    fill: transparent;
  }
  60%, 100% {
    stroke-width: .3;
    fill: #E5E9EF;
    opacity: 1;
  }
}

@keyframes logo-spiderman {
  0% {
    stroke-width: 0;
    stroke-dasharray: 1 100;
    fill: transparent;
    opacity: 0;
  }
  25% {
    stroke-width: 0.7;
    stroke-dasharray: 100 0;
    fill: transparent;
  }
  60%, 100% {
    stroke-width: .3;
    fill: #E5E9EF;
    opacity: 1;
  }
}

.line1 {
  -webkit-animation: moveline 6s ease infinite alternate;
          animation: moveline 6s ease infinite alternate;
}

.line2 {
  -webkit-animation: moveline 7s ease .5s infinite alternate;
          animation: moveline 7s ease .5s infinite alternate;
}

.line3 {
  -webkit-animation: moveline 8s ease .7s infinite alternate;
          animation: moveline 8s ease .7s infinite alternate;
}

.line4 {
  -webkit-animation: moveline 5s ease .3s infinite alternate;
          animation: moveline 5s ease .3s infinite alternate;
}

@-webkit-keyframes moveline {
  0% {
    stroke-dasharray: 270 50;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 500 10;
    stroke-dashoffset: 1000;
  }
}

@keyframes moveline {
  0% {
    stroke-dasharray: 270 50;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 500 10;
    stroke-dashoffset: 1000;
  }
}

.s-0 {
  margin: 0;
  padding: 0;
}

.m-1 {
  margin: 8px;
}

.m-2 {
  margin: 16px;
}

.m-3 {
  margin: 48px;
}

.m-4 {
  margin: 72px;
}

.m-5 {
  margin: 128px;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 48px;
}

.mt-4 {
  margin-top: 72px;
}

.mt-5 {
  margin-top: 128px;
}

.ml-1 {
  margin-left: 8px;
}

.ml-2 {
  margin-left: 16px;
}

.ml-3 {
  margin-left: 48px;
}

.ml-4 {
  margin-left: 72px;
}

.ml-5 {
  margin-left: 128px;
}

.mr-1 {
  margin-right: 8px;
}

.mr-2 {
  margin-right: 16px;
}

.mr-3 {
  margin-right: 48px;
}

.mr-4 {
  margin-right: 72px;
}

.mr-5 {
  margin-right: 128px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 48px;
}

.mb-4 {
  margin-bottom: 72px;
}

.mb-5 {
  margin-bottom: 128px;
}

.mx-1 {
  margin-left: 8px;
  margin-right: 8px;
}

.mx-2 {
  margin-left: 16px;
  margin-right: 16px;
}

.mx-3 {
  margin-left: 48px;
  margin-right: 48px;
}

.mx-4 {
  margin-left: 72px;
  margin-right: 72px;
}

.mx-5 {
  margin-left: 128px;
  margin-right: 128px;
}

.my-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.my-3 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.my-4 {
  margin-top: 72px;
  margin-bottom: 72px;
}

.my-5 {
  margin-top: 128px;
  margin-bottom: 128px;
}

.p-1 {
  padding: 8px;
}

.p-2 {
  padding: 16px;
}

.p-3 {
  padding: 48px;
}

.p-4 {
  padding: 72px;
}

.p-5 {
  padding: 128px;
}

.pt-1 {
  padding-top: 8px;
}

.pt-2 {
  padding-top: 16px;
}

.pt-3 {
  padding-top: 48px;
}

.pt-4 {
  padding-top: 72px;
}

.pt-5 {
  padding-top: 128px;
}

.pl-1 {
  padding-left: 8px;
}

.pl-2 {
  padding-left: 16px;
}

.pl-3 {
  padding-left: 48px;
}

.pl-4 {
  padding-left: 72px;
}

.pl-5 {
  padding-left: 128px;
}

.pr-1 {
  padding-right: 8px;
}

.pr-2 {
  padding-right: 16px;
}

.pr-3 {
  padding-right: 48px;
}

.pr-4 {
  padding-right: 72px;
}

.pr-5 {
  padding-right: 128px;
}

.pb-1 {
  padding-bottom: 8px;
}

.pb-2 {
  padding-bottom: 16px;
}

.pb-3 {
  padding-bottom: 48px;
}

.pb-4 {
  padding-bottom: 72px;
}

.pb-5 {
  padding-bottom: 128px;
}

.px-1 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-3 {
  padding-left: 48px;
  padding-right: 48px;
}

.px-4 {
  padding-left: 72px;
  padding-right: 72px;
}

.px-5 {
  padding-left: 128px;
  padding-right: 128px;
}

.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-3 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-4 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.py-5 {
  padding-top: 128px;
  padding-bottom: 128px;
}

/* Adjusted styles for the simplified layout */
.social-links {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.social-links img {
  width: 24px;
  margin: 0 10px;
  transition: 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

/* Remove any unwanted extra space in the layout */
.container {
  justify-content: center;
  text-align: center;
}

.footer {
  margin-top: 20px;
  text-align: center;
}
