:root {
  --main-blue: #131F6B;
}

/* -------------- Start General -------------- */
html,
body {
  height: 100%;
  position: relative;
}

body,
.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.space-30 {
  height: 30px;
}

.page-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.page-wrapper .blob {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  max-width: 800px;
  z-index: -1;
}

.page-wrapper .blob-strips {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  z-index: -2;
  max-width: 850px;
  animation: blobStrips 7s linear forwards infinite;
}

@keyframes blobStrips {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.arrows {
  position: absolute;
  z-index: -1;
}

.arrow-1 {
  left: 40%;
  top: 10%;
  animation: arrow1 10s linear forwards infinite 0s;
}

.arrow-2 {
  right: 7%;
  bottom: 8%;
  width: 50px;
  animation: arrow1 10s linear forwards infinite 1s;
}

.arrow-3 {
  top: 63%;
  right: 60%;
  width: 30px;
  animation: arrow1 10s linear forwards infinite 2s;
}

.arrow-4 {
  bottom: 8%;
  left: -1%;
  width: 55px;
  animation: arrow1 10s linear forwards infinite 3s;
}

@keyframes arrow1 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  3% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  95% {
    opacity: 0.2;
  }

  100% {
    transform: translate(200px, -200px);
    opacity: 0;
  }
}

/* -------------- End General -------------- */

/* -------------- Start Loader -------------- */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: var(--main-blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px dotted #FFF;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #fed500;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* -------------- End Loader -------------- */

/* -------------- Start Header -------------- */
.shift-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.shift-header .navbar-brand {
  display: block;
  width: 160px;
  padding-top: 15px;
}

/* -------------- End Header -------------- */

/* -------------- Start Hero -------------- */
.shift-hero {
  padding-block: 170px 100px;
  height: 100vh;
  min-height: 500px;
  overflow-y: auto;
}

.screens_slider {
  width: 370px;
}

.screens_slider .swiper-slide {
  padding: 50px;
  padding-top: 0;
  text-align: center;
}

.screens_slider .swiper-pagination-bullet {
  transition: all ease 0.3s;
  background: #D1D1D1;
  opacity: 1;
}

.screens_slider .swiper-pagination-bullet-active {
  width: 16px;
  background: var(--main-blue);
  border-radius: 20px;
}

.sub-title {
  font-size: 20px;
  text-transform: uppercase;
}

.main-title {
  font-size: 72px;
  color: var(--main-blue);
}

.list-wrapper .list-title {
  font-size: 25px;
  margin-bottom: 1rem;
}

.list-wrapper ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.list-wrapper ul li {
  font-size: 20px;
  padding-inline-start: 46px;
  position: relative;
  margin-bottom: 1rem;
}

.list-wrapper ul li:last-child {
  margin: 0;
}

.list-wrapper ul li:after {
  content: '';
  position: absolute;
  background: url('../img/check.svg') no-repeat center/cover;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
}

.download-small {
  font-size: 32px;
  text-transform: uppercase;
  line-height: 25px;
}

.download-big {
  font-size: 46px;
  text-transform: uppercase;
}

.qr-code {
  margin-inline-end: 15px;
  width: 150px;
}

/* -------------- End Hero -------------- */

/* -------------- Start Footer -------------- */
.shift-footer {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
}

.shift-footer .social {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
}

.shift-footer .social li a {
  font-size: 16px;
  color: var(--main-blue);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* -------------- End Footer -------------- */

/* -------------- Start Responsive -------------- */
@media (max-width:1366px) {
  .space-30 {
    height: 10px;
  }

  .shift-hero {
    padding-block: 60px 40px;
  }

  .screens_slider {
    width: 240px;
  }

  .screens_slider .swiper-slide {
    padding: 10px;
    padding-bottom: 50px;
  }

  .page-wrapper .blob {
    max-width: 580px;
  }

  .page-wrapper .blob-strips {
    max-width: 620px;
  }

  .sub-title {
    font-size: 18px;
  }

  .main-title {
    font-size: 50px;
  }

  .list-wrapper .list-title {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }

  .list-wrapper ul li {
    font-size: 16px;
    margin-bottom: 0.5rem;
    padding-inline-start: 35px;
  }

  .list-wrapper ul li:after {
    width: 20px;
    height: 20px;
  }

  .download-small {
    font-size: 26px;
  }

  .download-big {
    font-size: 35px;
  }

  .qr-code {
    width: 120px;
  }
}

@media (max-width: 1024px) {
  .shift-hero {
    padding-block: 115px 40px;
  }
}

@media (max-width: 768px) {

  .page-wrapper .blob,
  .page-wrapper .blob-strips {
    display: none;
  }

  .shift-header {
    /* background: #fff; */
    position: static;
    margin-bottom: 30px;
  }

  .shift-footer {
    position: static;
  }

  .shift-hero {
    padding: 0;
    height: auto;
  }

  .page-wrapper {
    overflow-y: auto;
  }

  .screens_slider {
    margin-top: 30px;
  }

  .shift-footer .social {
    justify-content: center;
  }
}

@media (max-width:480px) {
  .sub-title {
    font-size: 16px;
  }

  .list-wrapper {
    margin-bottom: 15px;
  }

  .main-title {
    font-size: 40px;
  }

  .qr-code {
    width: 100px;
  }

  .download-small {
    font-size: 20px;
  }

  .download-big {
    font-size: 28px;
  }
}

/* -------------- End Responsive -------------- */