@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
body {
  background: #0c0c0c;
  color: #fff;
}
body * {
  font-family: "Manrope", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

html, body {
  height: 100%;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #0c0c0c;
}

main {
  min-height: 100dvh;
}

.container {
  max-width: 756px;
  width: 100%;
  margin: auto;
}

h1 {
  text-align: center;
}

p {
  text-align: center;
  color: #b6b6b6;
}

h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}

.navigation {
  position: relative;
  z-index: 30;
}
.navigation .title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 30px;
}
.navigation .navbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: space-between;
}
.navigation .prev-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -40px;
  top: -10px;
  cursor: pointer;
  width: 22px;
  height: 22px;
}
.navigation .prev-arrow svg {
  width: 100%;
  height: 100%;
}
.navigation .nav-solid {
  height: 4px;
  background: #161616;
  border-radius: 5px;
  width: 100%;
}
.navigation .nav-solid.active {
  background: #ffa619;
}

.choose {
  display: flex;
  gap: 16px;
}

.card {
  position: relative;
  max-width: 169px;
  min-height: 164px;
  height: 1035px;
  width: 100%;
  border: 2px solid #2c2e35;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.card img, .card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.card .p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  height: 36px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  background: #2c2e35;
  transition: 0.3s ease-in-out;
}
.card:hover {
  border-color: #ffa619;
}
.card:hover .p {
  background: #ffa619;
}

.big {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 353px;
  color: #000;
  font-size: 18px;
  background: #ffa619;
  height: 48px;
  border-radius: 10px;
  font-weight: 700;
  margin: auto;
  cursor: pointer;
}

.fullscreen1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 478px;
  height: 100vh;
  margin: auto;
  overflow: hidden;
}
.fullscreen1 .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
}
.fullscreen1 .full-text {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
.fullscreen1 .btn {
  position: fixed;
  z-index: 2;
  bottom: 30px;
  width: 100%;
  left: 0;
  right: 0;
}

.video-wrapper {
  position: relative;
}
.video-wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 540px;
  width: 100%;
  background: linear-gradient(360deg, rgba(12, 12, 12, 0), #0c0c0c);
  pointer-events: none;
  z-index: 1;
  transform: rotate(180deg);
}
.video-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 540px;
  width: 100%;
  background: linear-gradient(360deg, rgba(12, 12, 12, 0), #0c0c0c);
  pointer-events: none;
  z-index: 1;
}
.video-wrapper img, .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.screen3 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  max-width: 478px;
  height: 100vh;
  overflow: hidden;
  margin: auto !important;
  box-sizing: border-box;
}
.screen3 .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
}
.screen3 img, .screen3 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.screen3 h2 {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
}
.screen3 .btn {
  position: fixed;
  bottom: 30px;
  width: 100%;
  margin-top: 10px;
  z-index: 20;
}

.range {
  position: absolute;
  bottom: 200px;
  width: 90%;
  z-index: 2;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgb(255, 147, 0) 0%, rgb(255, 147, 0) 100%) no-repeat #e0e0e0;
  background-size: 0% 100%;
  box-sizing: border-box;
  outline: none;
  padding: 0;
}
input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  height: 6px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 3px solid rgb(255, 147, 0);
  border-radius: 50%;
  margin-top: -9px;
  cursor: pointer;
}
input[type=range]::-moz-range-track {
  background: transparent;
  height: 6px;
}
input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 3px solid rgb(255, 147, 0);
  border-radius: 50%;
}

.range-titles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 10px;
}
.range-titles:last-child {
  margin-bottom: 0;
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.choose-grid .card {
  height: 514px;
}

.fullscreen2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 478px;
  height: 100vh;
  margin: auto;
  overflow: hidden;
  box-sizing: border-box;
}
.fullscreen2 .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
}
.fullscreen2 .text {
  margin-bottom: 20px;
}
.fullscreen2 .full-bottom {
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  text-align: center;
  line-height: 25px;
  bottom: 50px;
}

.fullscreen3 {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 478px;
  height: 100vh;
  margin: auto;
  overflow: hidden;
  box-sizing: border-box;
}
.fullscreen3 .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
}
.fullscreen3 .big {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  text-align: center;
  line-height: 25px;
  top: 20px;
  font-size: 20px;
}
.fullscreen3 .big p {
  font-size: 12px;
}
.fullscreen3 .btn {
  position: fixed;
  z-index: 2;
  bottom: 30px;
  width: 100%;
  left: 0;
  right: 0;
}

.loader h2 {
  font-size: 32px;
  font-weight: bold;
}
.loader h2 span {
  color: #ffa619;
}

.loader-main {
  max-width: 486px;
  margin: auto auto 40px auto;
}
.loader-main h2 {
  margin-bottom: 40px;
}

.loader-line {
  font-weight: bold;
  margin-bottom: 20px;
}
.loader-line:last-child {
  margin-bottom: 0;
}
.loader-line .line {
  position: relative;
  height: 5px;
  width: 100%;
  background: #161616;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}
.loader-line .line .fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, rgb(255, 147, 0) 0%, rgb(218, 72, 0) 100%);
  width: 0;
}

.loader-swiper {
  position: relative;
  max-width: 724px;
  margin: auto;
}
.loader-swiper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #0c0c0c, rgba(12, 12, 12, 0) 20%, rgba(12, 12, 12, 0) 80%, #0c0c0c);
  pointer-events: none;
  z-index: 5;
}

.slide {
  background: #181818;
  border-radius: 24px;
  border: 2px solid rgba(24, 24, 24, 0.25);
  padding: 32px;
  box-sizing: border-box;
  width: 226px;
  height: 224px;
  user-select: none;
}

.slide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slide-header .ava {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #1e1e1e;
  border-radius: 50%;
  overflow: hidden;
}
.slide-header .ava svg {
  color: #2d2d2d;
  width: 90%;
  margin-bottom: -10px;
}
.slide-header .name {
  font-weight: 700;
  margin-bottom: 8px;
}
.slide-text {
  color: #808080;
  font-weight: 500;
  margin-top: 32px;
  line-height: 22px;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  flex: none;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  background: #181818;
  border-radius: 20px;
  max-width: 132px;
  height: 20px;
  margin: 20px auto auto auto;
}

.swiper-pagination-bullet-active {
  background: #ffa619;
}

.video-loader-wrapper {
  max-width: 756px;
  width: 100%;
  margin: auto;
}
.video-loader-wrapper video {
  width: 100%;
}

.loader-screen1, .loader-screen2, .loader-screen3 {
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
}

.loader-screen-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  box-sizing: border-box;
  padding: 20px 0;
}
.loader-screen-bottom h2 {
  position: relative;
  font-size: 20px;
  margin: 0;
  z-index: 6;
  margin-bottom: 20px;
}
.loader-screen-bottom h2 span {
  color: #ffa619;
}
.loader-screen-bottom:after {
  content: "";
  position: absolute;
  top: -20px;
  left: -30px;
  width: 120%;
  height: 100vh;
  background: #0c0c0c;
  filter: blur(12px) brightness(0.4);
  z-index: 5;
}
.loader-screen-bottom .buttons {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 6;
}
.loader-screen-bottom .btn {
  width: 226px;
  height: 49px;
  background: #ffa619;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.final {
  box-sizing: border-box;
  padding-bottom: 60px;
}
.final * {
  box-sizing: border-box;
}
.final .header {
  max-width: 736px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  background: #161616;
  padding: 16px;
  border-radius: 0 0 16px 16px;
}
.final .timer {
  display: flex;
  gap: 16px;
}
.final .logo-text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.final .time {
  font-size: 16px;
  color: #ffa619;
  font-weight: 700;
}
.final .btn {
  max-width: 282px;
  width: 100%;
  margin: 0;
}

.main .flex {
  display: flex;
  gap: 20px;
}

.final-h1 {
  font-size: 32px;
  color: #ffa619;
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
}

.final-p {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 50px;
}

.left-side {
  max-width: 298px;
  width: 100%;
}
.left-side .image {
  height: 276px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #2c2e35;
}
.left-side .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-h2 {
  font-size: 32px;
  text-align: center;
  color: #ffa619;
  font-weight: 700;
  margin: 30px 0;
}

ul {
  padding-left: 10px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  list-style-type: none;
  margin-bottom: 20px;
}
ul li:last-child {
  margin-bottom: 0;
}
ul li:before {
  content: "";
  background: url("../img/marker.svg") no-repeat center/cover;
  width: 17px;
  height: 16px;
}

.right-side {
  width: 380px;
}
.right-side h3 {
  font-size: 20px;
  text-align: center;
}
.right-side h3 span {
  color: #ffa619;
}
.right-side h4 {
  font-size: 16px;
  text-align: center;
}
.right-side h4 span {
  color: #ffa619;
}

.plans {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  border-radius: 16px;
  background: #161616;
  border: 2px solid #2c2e35;
  cursor: pointer;
  padding: 24px;
  transition: 0.3s ease-in-out;
}
.plan:hover {
  border-color: #ffa619;
}

.description div:nth-child(1) {
  font-weight: 700;
  font-size: 18px;
}
.description div:nth-child(2) {
  background: #ff9900;
  font-size: 14px;
  letter-spacing: 0.7px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  color: #000;
  width: fit-content;
  margin: 5px 0;
}
.description div:nth-child(3) {
  font-size: 12px;
}
.description div:nth-child(3) span {
  color: #808080;
  text-decoration: line-through;
  margin-right: 2px;
}

.most-plan {
  height: 150px;
}

.plan.active {
  border-color: #ffa619;
  box-shadow: 0 0 10px 0 #ffa619;
}

.price {
  display: flex;
  font-size: 32px;
  font-weight: 700;
  gap: 10px;
}
.price .flex {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price .flex div {
  font-size: 18px;
}
.price .flex span {
  font-size: 12px;
  font-weight: 600;
}

.most {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  background: #ffa619;
  border-radius: 0 0 12px 12px;
}

.under-plans {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 10px 0;
}
.under-plans div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.border {
  height: 42px;
  width: 2px;
  background: rgb(44, 46, 53);
  flex: none;
}

.final-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #ff9900;
  height: 48px;
  border-radius: 10px;
  font-size: 22px;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  animation: 1.5s scale infinite;
  cursor: pointer;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.pp {
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
  margin: 10px 0;
}

.pp-small {
  color: #808080;
  font-size: 12px;
  text-align: center;
}

.featured-flex {
  display: flex;
}

.final-slider {
  position: relative;
  max-width: 724px;
  margin: auto;
}
.final-slider .swiper-pagination {
  max-width: 150px;
}
.final-slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #0c0c0c, rgba(12, 12, 12, 0) 20%, rgba(12, 12, 12, 0) 80%, #0c0c0c);
  pointer-events: none;
  z-index: 5;
}
.final-slider .slide {
  max-width: 368px;
  height: 168px;
  width: 100%;
  padding: 16px;
}
.final-slider .slide-header {
  justify-content: flex-start;
  gap: 16px;
}

.users-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.user {
  position: relative;
  width: 180px;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
}
.user img {
  width: 100%;
}
.user:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.user-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}
.user-info .name {
  margin: 5px 0;
}

.ver svg {
  margin-bottom: -3px;
}

.sc {
  max-width: 478px !important;
  margin: 40px auto auto auto !important;
}

.featured {
  background: #161616;
  border-radius: 20px;
  padding: 32px;
  margin: 50px 0;
}
.featured h2 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 30px 0;
}

.featured-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ug {
  font-size: 32px;
  font-weight: 700;
  margin: 50px 0 20px 0;
}

.decor {
  position: relative;
  margin: 100px 0;
}

.decor-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.decor-line svg:first-child {
  transform: scaleX(-1);
}
.decor-line h2 {
  font-size: 32px;
}
.decor-line h2 span {
  color: #ff9900;
}

.top-svg {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
}

.feats {
  max-width: 1024px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.feat {
  width: 192px;
  height: 132px;
  padding: 16px;
  box-sizing: border-box;
  background: #181818;
  border-radius: 20px;
}
.feat .num {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0;
}
.feat .text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6980392157);
}

.faq {
  margin: 50px 0;
}
.faq h2 {
  font-weight: 700;
  font-size: 32px;
}

.accordion {
  background: #181818;
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}
.accordion:last-child {
  margin-bottom: 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.accordion-header svg {
  transition: 0.3s ease-in-out;
  transform: rotate(180deg);
}

.accordion-body {
  color: #b6b6b6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-body.open {
  padding: 20px 20px 20px 0;
  max-height: 300px;
}

.accordion-header.active svg {
  transform: rotate(0deg);
}

.secure {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid #2c2e35;
  border-radius: 12px 12px 0 0;
  padding: 16px;
  border-bottom: 0;
}
.secure .image {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 32px;
  font-weight: 700;
}
.secure .image img {
  width: 127px;
  height: 128px;
}
.secure .text {
  max-width: 308px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.secure-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161616;
  padding: 3px 6px;
  border-radius: 0 0 12px 12px;
  border: 1px solid #2c2e35;
  border-top: 0;
  color: #ff9900;
  font-weight: 700;
}
.secure-bottom svg {
  margin-right: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.modal.active {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  max-width: 480px;
  max-height: 470px;
  height: 100%;
  width: 100%;
  margin: 0 10px;
  background: #1c1c1c;
  border-radius: 20px;
  overflow: hidden;
}
.modal-content h2 {
  font-size: 36px;
  text-transform: uppercase;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  line-height: 15px;
  color: #fff;
  z-index: 3;
  cursor: pointer;
}

.modal-flex {
  display: flex;
  height: 100%;
}

form {
  display: flex;
  flex-direction: column;
}
form * {
  box-sizing: border-box;
}

input {
  height: 44px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  border: none;
  background: #252525;
  outline-color: #303030;
  padding: 0 20px;
  color: #fff;
  font-weight: 600;
}
input::placeholder {
  font-weight: 600;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: #ff9900;
  margin-top: 20px;
  height: 44px;
  cursor: pointer;
}

.form-side {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 12px 40px;
  width: 100%;
  height: 100%;
}
.form-side p {
  font-size: 13px;
  color: rgb(164, 164, 164);
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 340px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 30px;
  }
  .card {
    max-width: 164px;
    height: 384px;
  }
  .navigation {
    max-width: 216px;
    margin: auto;
  }
  .range {
    max-width: 90%;
  }
  .choose-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 30px;
  }
  .choose-grid .card {
    height: 255px;
  }
  .video-loader-wrapper {
    width: 100%;
  }
  .video-loader-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .loader-main {
    padding: 0 10px;
  }
  .slide {
    width: 80%;
    margin: auto;
    height: 166px;
    padding: 24px;
  }
  .swiper-pagination {
    width: fit-content !important;
    padding: 0 10px !important;
  }
  .final .header {
    border-radius: 0;
    gap: 20px;
  }
  .flex {
    flex-direction: column;
  }
  .left-side, .right-side {
    width: 100%;
    max-width: 100%;
  }
  .users-grid {
    gap: 12px;
  }
  .users-grid .col:first-child {
    display: none;
  }
  .users-grid .col:last-child {
    display: none;
  }
  .col {
    gap: 12px;
  }
  .user {
    max-width: 132px;
    max-height: 209px;
    width: 100%;
    height: auto;
  }
  .stars svg {
    width: 12px;
    height: 11px;
  }
  .user-info .name {
    font-size: 15px;
    font-weight: 700;
  }
  .user-info .ver {
    font-size: 12px;
  }
  .final .btn {
    width: 90%;
  }
  .decor-line {
    gap: 8px;
    padding: 0 10px;
  }
  .feats {
    flex-direction: column;
    gap: 0;
    background: #181818;
    width: 95%;
    border-radius: 20px;
  }
  .feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border-radius: 0;
    max-width: 296px;
    width: 100%;
    margin: auto;
    height: auto;
  }
  .feat br {
    display: none;
  }
  .secure {
    flex-direction: column;
  }
  .secure .image {
    font-size: 22px;
  }
  .screen3 img, .screen3 video {
    height: 100vh;
  }
  .video-loader-wrapper {
    height: 100%;
  }
  .screen3 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .loader-screen-bottom {
    padding: 20px;
  }
  .loader-screen-bottom .buttons {
    box-sizing: border-box;
  }
  .screen3 {
    margin-top: 30px;
  }
}

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