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

body {
  width: 100%;
  height: 100vh;
  background: #0a0c10;
}

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

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

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

.container {
  max-width: 1440px;
  height: 70vh;
  margin: 0 auto;
  padding: 36px 16px;
  overflow: none;
  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;
}

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

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

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

.w-auto {
  width: auto;
}

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

.spiderman {
  width: 120%;
  -webkit-transform: translate3d(-150px, -50px, 0);
          transform: translate3d(-150px, -50px, 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;
  padding: 12px 32px;
  border-radius: 3px;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  text-transform: uppercase;
  background: linear-gradient(267.72deg, #f02a2f 0.88%, #ea1d22 100%);
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.btn::after, .btn::before {
  content: "";
  display: block;
  width: 20%;
  height: 70%;
  border-radius: 3px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  position: absolute;
}

.btn::after {
  top: -2px;
  left: -2px;
  border-top: 3px solid #edf1f7;
  border-left: 3px solid #edf1f7;
}

.btn::before {
  bottom: -2px;
  right: -2px;
  border-bottom: 3px solid #edf1f7;
  border-right: 3px solid #edf1f7;
}

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

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

.btn-secondary {
  display: inline-block;
  padding: 10px 32px;
  border-radius: 3px;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  text-transform: uppercase;
  border: 2px solid #f02a2f;
  background: transparent;
  position: relative;
}

.btn-secondary::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: -1px;
  width: 0%;
  height: 102%;
  background: linear-gradient(267.72deg, #f02a2f 0.88%, #ea1d22 100%);
  z-index: -1;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

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

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

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

.bg-video::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: -webkit-gradient(linear, left top, right top, color-stop(24.48%, #0b0c10), color-stop(54.09%, rgba(11, 12, 16, 0.8)), color-stop(77.6%, #0c0c10));
  background: linear-gradient(90deg, #0b0c10 24.48%, rgba(11, 12, 16, 0.8) 54.09%, #0c0c10 77.6%);
}

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

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

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

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

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

.logo {
  max-width: 88px;
}

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

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

.nav-link {
  margin-left: 24px;
  text-transform: uppercase;
  font-weight: 300;
  color: #959698;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-link::after {
  content: "";
  display: block;
  width: 3px;
  height: 0px;
  top: -40px;
  left: 45%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(215, 27, 31, 0)), to(#d71b1f));
  background: linear-gradient(180deg, rgba(215, 27, 31, 0) 0%, #d71b1f 100%);
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

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

.nav-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 10;
}

.nav-social a {
  margin-left: 10px;
}

.nav-social svg {
  width: 50px;
}

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

.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 svg {
    display: none;
  }
}

.navbar-mobile {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .navbar-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bx {
  width: 40px;
  height: 40px;
  display: none;
  cursor: pointer;
  position: fixed;
  right: 0;
  z-index: 998;
}

.bx::after, .bx::before {
  content: "";
  display: block;
  position: absolute;
  width: 75%;
  height: 2px;
  background: #f4f7fb;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bx::after {
  top: 57%;
  left: 12%;
}

.bx::before {
  top: 33%;
  left: 12%;
}

@media screen and (max-width: 960px) {
  .bx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.active-bx {
  width: 36px;
  height: 36px;
  position: fixed;
  cursor: pointer;
  z-index: 999;
  right: 0;
}

.active-bx::after, .active-bx::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17%;
  width: 70%;
  height: 2px;
  border-radius: 2px;
  background-color: #f4f7fb;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.active-bx::before {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.active-bx::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.menu-mobile {
  width: 100vw;
  height: 100vh;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #272a31;
  z-index: -1;
  position: fixed;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 960px) {
  .menu-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.active-menu-mobile {
  opacity: 1;
  z-index: 998;
}

.nav-list-mobile {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  list-style: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-link-mobile {
  font-size: 30px;
  margin: 30px 0;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-link-mobile::after, .nav-link-mobile::before {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  background: #f02a2f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-link-mobile::after {
  bottom: 0;
  left: 0;
}

.nav-link-mobile::before {
  top: 0;
  right: 0;
}

.nav-link-mobile:hover, .nav-link-mobile:active {
  color: #f02a2f;
}

.nav-link-mobile:hover::after, .nav-link-mobile:hover::before, .nav-link-mobile:active::after, .nav-link-mobile:active::before {
  width: 100%;
}

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

@-webkit-keyframes logo-spiderman {
  0% {
    stroke-width: 0;
    stroke-dasharray: 1 100;
    fill: transparent;
  }
  25% {
    stroke-width: 1;
    stroke-dasharray: 100 0;
  }
  60%,
  100% {
    stroke-width: 0.3;
    fill: #e5e9ef;
  }
}

@keyframes logo-spiderman {
  0% {
    stroke-width: 0;
    stroke-dasharray: 1 100;
    fill: transparent;
  }
  25% {
    stroke-width: 1;
    stroke-dasharray: 100 0;
  }
  60%,
  100% {
    stroke-width: 0.3;
    fill: #e5e9ef;
  }
}

.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;
}
/*# sourceMappingURL=style.css.map */