/* ===========================
   Laptopstore App Banner
   =========================== */

.banner-gen.app-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 430px;
  min-height: 430px;
  max-height: 430px;
  padding: 35px 60px;
  overflow: hidden;
  border-radius: 30px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #07090f 0%, #10141f 45%, #d97a1d 100%);
}

.banner-gen.app-banner:before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -260px;
  top: -160px;
  border-radius: 50%;
  background: rgba(241, 139, 48, 0.25);
  filter: blur(120px);
  pointer-events: none;
}

/* LEFT */

.app-left {
  width: 38%;
  position: relative;
  z-index: 2;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 30px;
  border: 1px solid rgba(241, 139, 48, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: #f18b30;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
}

.app-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.app-subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* BUTTONS */

.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-btn {
  height: 52px;
  min-width: 155px;
  padding: 0 14px;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.25s;
}

.app-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.app-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.app-btn span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1;
}

.app-btn strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-top: 3px;
}

/* CENTER */

.app-middle {
  width: 24%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.app-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.app-feature i {
  color: #f18b30;
  margin-right: 8px;
}

/* RIGHT */

.app-right {
  width: 24%;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.phone-card {
  width: 140px;
  height: 260px;
  border-radius: 28px;
  background: #fff;
  position: relative;
  transform: rotate(-8deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.phone-card:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 6px;
  border-radius: 20px;
  background: #111;
}

.phone-screen {
  padding: 46px 14px 14px;
}

.phone-logo {
  text-align: center;
  color: #f18b30;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
}

.phone-line {
  height: 10px;
  border-radius: 10px;
  background: #f18b30;
  margin-bottom: 8px;
}

.phone-line.gray {
  background: #ececec;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.phone-grid div {
  height: 50px;
  border-radius: 14px;
  background: #f2f2f2;
}

/* FLOATING ICONS */

.app-icon,
.floating-logo {
  position: absolute;
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 8px;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  animation: floatIcon 4s ease-in-out infinite;
}

.app-right img {
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain;
}

.icon1,
.fl1 {
  left: 4px;
  top: 115px;
}

.icon2,
.fl2 {
  right: 8px;
  top: 45px;
  animation-delay: 1s;
}

.icon3,
.fl3 {
  right: 8px;
  bottom: 55px;
  animation-delay: 2s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }

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

/* SLIDER ARROWS/DOTS SAFETY */

.banner-gen.app-banner .swiper-pagination,
.banner-gen.app-banner .slick-dots {
  bottom: 12px !important;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .banner-gen.app-banner {
    padding: 28px 24px;
  }

  .app-title {
    font-size: 30px;
  }

  .app-subtitle {
    font-size: 14px;
  }

  .app-feature {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .banner-gen.app-banner {
    flex-direction: column;
    text-align: center;
    height: auto;
    max-height: none;
    padding: 28px 18px;
  }

  .app-left,
  .app-middle,
  .app-right {
    width: 100%;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-middle {
    margin: 24px 0;
  }

  .app-right {
    height: 280px;
  }
}





.banner-gen {
    width: 100%;
    height: 100%;
    display: flex;
    background-size: 100%;
    font-family: "GeForce Bold-Alt";
}
.banner-gen .b1.left {
    background: transparent;
    position: relative;
}
.banner-gen .b1 {
    flex: 1;
    padding: 0;
    text-align: center;
    height: 100%;
    display: inline-block;
}
.p-name-block {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    left: 20%;
    color: #444;
}
.p-name {
    font-weight: 600;
    font-size: 3.6vw;
}
.p-model {
    font-size: 2.2vw;
}
.p-price {
    border-radius: 8px;
    background: #ee7f1a;
    display: inline-block;
    padding: 2px 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
    font-size: 2.8vw;
}
.banner-gen .b1.middle {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-params {
    text-align: left;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #555;
    font-size: 1.6vw;
    font-weight: 600 !important;
    font-family: "GeForce Bold-Alt";
}
.p-params div {
    font-weight: 600 !important;
}
.p-params img {
    width: 12%;
    margin-right: 3%;
}
.banner-gen .b1.right {
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
}
.image-badge-rotating-glow {
    background-size: 100%;
    width: 30%;
    height: 30%;

}
.banner-gen .b1.right img {
    right: 40%;
    position: absolute;
    height: 70%;
}
.swiper-slide .banner-gen a {
    color: #fff;
    text-decoration: none;
}




.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
    display: none;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    width: 100%;
    max-width: 94%;
    padding: 0 15px;
    position: static;
    height: 100%;
}

.swiper-big-container .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    display: inline-block;
    text-align: center;
}

.swiper-big-container .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    max-width: 1440px;
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
    align-items: center;
}

.swiper-big-container .swiper-wrapper {
    max-width: 100%;
}

.swiper-big-container .swiper-slide a {
    display: block;
    width: 100%;
    padding: 0;
    height: 100%;
}

.swiper-big-container .swiper-slide span {
    display: block;
    width: 100%;
    padding: 0;
    height: 100%;
}



.frame-baner {
    margin-bottom: 3px;
}

.container.start-page.cats-carousel {
    height: 100px;
    background: #fff;
    margin-bottom: 6px;
    height: 100px;
    text-align: center;
    position: relative;
    margin: 0 0 6px;
}

.items-brands.cats>li {
    margin-bottom: 0;
    margin-right: 0px;
    border: 2px solid #f2f2f2;
    border-radius: 0;
    border-top: none;
    border-bottom: none;
}

.swiper-slide:hover a {
    box-shadow: 0 0 15px #ccc;
    position: relative;
    z-index: 90;
    transition: all ease .4s;
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
    display: none;
}

.swiper-container .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    width: 100%;
    max-width: 94%;
    padding: 0 15px;
    position: static;
    height: 100%;
}

.swiper-container .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    display: inline-block;
    width: auto;
    text-align: center;
}

.swiper-container .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    max-width: 1440px;
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-container .swiper-slide a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border: solid #f1f1f1;
    border-width: 0 1px;
    margin: 0;
    text-transform: uppercase;
    color: #000;
    min-width: 185px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

.cats-carousel .swiper-button-prev, .cats-carousel .swiper-button-next {
    position: absolute;
    top: 18px;
    width: 50px;
    height: 98px;
    margin-top: -18px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 28px;
    background-color: transparent;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 0;
    right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 0;
    left: auto;
}

.swiper-button-prev i, .swiper-button-next i {
    color: #999;
    font-size: 26px;
}

.swiper-slide a span.img {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: block;
}

.swiper-slide a span.img img {
    display: block;
    width: auto;
    max-height: 44px;
}

.swiper-slide:first-child a span.img img {
    filter: unset;
}

.swiper-slide a .text {
    margin: 0;
    font-size: 12px;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: #333;
}

.frame-baner {
    margin-bottom: 3px;
}

.container.start-page.cats-carousel {
    height: 100px;
    background: #fff;
    margin-bottom: 6px;
    height: 100px;
    text-align: center;
    position: relative;
    margin: 0 0 6px;
}

.items-brands.cats>li {
    margin-bottom: 0;
    margin-right: 0px;
    border: 2px solid #f2f2f2;
    border-radius: 0;
    border-top: none;
    border-bottom: none;
}

.iframe-container {
    overflow: hidden;
    padding-top: 29.25%;
    position: relative;
}

.iconcloud {

        width: 100%;
        height: 200px;
        overflow: hidden;
        overflow: hidden;
    right: 40%;
    position: absolute;
    height: 80%;
    z-index: 5;
}

.bannericon {
  position: absolute !important;
  width: 30px !important;
  height: 30px !important;
  object-fit: contain !important;
  animation: floatZoom 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.18));
}

.i1 { left: 8%;  top: 30%; animation-delay: 0s; }
.i2 { left: 22%; top: 12%; animation-delay: .6s; }
.i3 { left: 38%; top: 45%; animation-delay: 1.1s; }
.i4 { left: 55%; top: 18%; animation-delay: .3s; }
.i5 { left: 70%; top: 50%; animation-delay: 1.5s; }
.i6 { left: 84%; top: 25%; animation-delay: .9s; }
.i7 { left: 48%; top: 70%; animation-delay: 2s; }
.i8 { left: 10%; top: 35%; animation-delay: 1.5s; }
.i9 { left: 65%; top: 60%; animation-delay: .9s; }
.i10 { left: 45%; top: 20%; animation-delay: 2s; }

@keyframes floatZoom {
  0% {
    transform: translateY(0) scale(.85) rotate(0deg);
    opacity: .65;
  }
  35% {
    transform: translateY(-14px) scale(1.25) rotate(4deg);
    opacity: 1;
  }
  70% {
    transform: translateY(10px) scale(.95) rotate(-4deg);
    opacity: .8;
  }
  100% {
    transform: translateY(0) scale(.85) rotate(0deg);
    opacity: .65;
  }
}

@media screen and (max-width: 767px) {
        .banner-gen {
        width: 100%;
        height: 100%;
        display: flex;
        background-size: 100%;
        font-family: "GeForce Bold-Alt";
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
    }
        .banner-gen .b1.left {
        background: transparent;
        position: relative;
        width: 100%;
        height: 30%;
    }
        .banner-gen .b1 {
        flex: none;
        padding: 0;
        text-align: center;
        height: 100%;
        display: inline-block;
    }
        .p-name-block {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        flex-direction: column;
        left: 0;
        color: #444;
        text-align: left;
        padding-left: 6%;
    }
        .p-name {
        font-weight: 600;
        font-size: 6.6vw;
        width: 100%;
    }
        .p-model {
        font-size: 4.2vw;
        width: 100%;
    }
    .banner-gen .b1.middle {
        background: transparent;
        display: flex;
        align-items: unset;
        justify-content: center;
        width: calc(50% - 6%);
        height: 70%;
        padding-left: 6%;
    }
        .p-params {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
        color: #555;
        font-size: 3.2vw;
        font-weight: 600 !important;
        font-family: "GeForce Bold-Alt";
    }
        .p-price {
        border-radius: 8px;
        background: #ee7f1a;
        display: inline-block;
        padding: 6px 16px;
        font-weight: 600;
        color: #fff;
        margin-top: 20px;
        font-size: 3.5vw;
        text-align: center;
        box-shadow: 0 0 5px #777;
        font-family: sans-serif;
    }
        .banner-gen .b1.right {
        background: transparent;
        display: flex;
        align-items: start;
        position: relative;
        width: 50%;
        height: 70%;
    }
        .image-badge-rotating-glow {
        background-size: 100%;
        width: 50%;
        height: 30%;

    }
        .banner-gen .b1.right img {
        position: unset;
        width: 100%;
        object-fit: contain;
        height: auto;
    }
    
    
    
    .iframe-container {
        overflow: hidden;
        padding-top: 100%;
        position: relative;
    }

    .swiper-container .swiper-slide a {
        min-width: 150px;
    }

    .swiper-slide a span.img {
        float: none;
        display: block;
        width: 36px;
        height: auto;
        margin: 5px auto 0;
    }

    .swiper-slide a span.img img {
        display: block;
        width: auto;
        max-height: 36px;
    }

    .swiper-slide a .text {
        font-size: 12px;
        line-height: 2.5;
    }

    .swiper-big-container .swiper-button-prev, .swiper-big-container .swiper-button-next {
        display: none !important;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none !important;
    }
.iconcloud {
          position: absolute;
        width: 100%;
        height: 200px;
        overflow: hidden;
}

.bannericon {
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  animation: floatZoom 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.18));
}

.i1 { left: 8%;  top: 30%; animation-delay: 0s; }
.i2 { left: 22%; top: 12%; animation-delay: .6s; }
.i3 { left: 38%; top: 45%; animation-delay: 1.1s; }
.i4 { left: 55%; top: 18%; animation-delay: .3s; }
.i5 { left: 70%; top: 50%; animation-delay: 1.5s; }
.i6 { left: 84%; top: 25%; animation-delay: .9s; }
.i7 { left: 48%; top: 70%; animation-delay: 2s; }

@keyframes floatZoom {
  0% {
    transform: translateY(0) scale(.85) rotate(0deg);
    opacity: .65;
  }
  35% {
    transform: translateY(-14px) scale(1.25) rotate(4deg);
    opacity: 1;
  }
  70% {
    transform: translateY(10px) scale(.95) rotate(-4deg);
    opacity: .8;
  }
  100% {
    transform: translateY(0) scale(.85) rotate(0deg);
    opacity: .65;
  }
}

}