* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      overflow: hidden;
      font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    }


    /* main splash screen – fullscreen modern app loading */
    .splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffff;  /* clean white background as primary (you can use white) */
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    /* inner content wrapper – perfect centering flex */
    .splash-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 360px;
      padding: 24px;
      text-align: center;
      animation: fadeInScale 0.55s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
    }

    /* logo container: relative to place vertical bars behind */
    .logo-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      width: 150px;
      height: 150px;
    }

    /* vertical accent bars – left & right using primary #263d67 */
    .accent-bar {
      position: absolute;
      width: 8px;
      height: 110px;
      background-color: #263d67;   /* deep indigo from your palette */
      border-radius: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
      box-shadow: 0 6px 14px rgba(38, 61, 103, 0.2);
      transition: all 0.2s ease;
    }

    .left-bar {
      left: 160px;
      top: 15px;
    }

    .right-bar {
      right: 160px;
      top: 15px;
    }
    .brand-icon {
      h1{
        color: #263d67;
        font-weight:bold;
        margin-bottom: 50px;
        margin-top: 20px;
      }
      img{
        width: 250px;
        height: 150px;
        border-radius:30%;
      }
    }

    /* main shape: rounded square / abstract Q-style (modern fastfood) */
    .icon-shape {
      width: 72px;
      height: 72px;
      background: #263d67;   /* deep brand color for monochrome illustration */
      border-radius: 28px;
      position: absolute;
      top: 3px;
      left: 3px;
      opacity: 0.92;
      transition: transform 0.2s;
    }

    /* stylized "Q" cutout / minimal white highlight */
    .icon-cut {
      position: absolute;
      width: 28px;
      height: 28px;
      background: white;
      border-radius: 50%;
      top: 22px;
      left: 22px;
      box-shadow: inset 0 0 0 3px #263d67;
    }

    .icon-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      background: #71a3ff;   /* fresh accent from palette */
      border-radius: 50%;
      bottom: 18px;
      right: 14px;
      box-shadow: 0 0 0 2px white;
    }

    /* subtle detail lines – minimal modern */
    .detail-line {
      position: absolute;
      width: 20px;
      height: 3px;
      background: #71a3ff;
      border-radius: 4px;
      bottom: 22px;
      left: 18px;
      opacity: 0.7;
    }

    /* brand name – bold, KFC-style typography with your palette */
    .brand-name {
      font-size: 2.5rem;
      font-weight: 900;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin: 12px 0 28px 0;
      background: linear-gradient(135deg, #263d67 0%, #3a5a8f 70%, #71a3ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 1px 0 rgba(113, 163, 255, 0.1);
      font-family: 'Helvetica Neue', 'Impact', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* 3 animated loading dots – using #71a3ff as primary dot color with slight red/brand but we follow your accent */
    .dots-loading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;  
      margin-top: 6px;
    }

    .dot {
      width: 12px;
      height: 12px;
      background-color: #71a3ff;   /* vibrant blue from your palette */
      border-radius: 50%;
      opacity: 0.55;
      animation: bounceFade 1.2s infinite ease-in-out;
      box-shadow: 0 2px 4px rgba(113, 163, 255, 0.3);
    }

    .dot:nth-child(1) {
      animation-delay: 0s;
    }
    .dot:nth-child(2) {
      animation-delay: 0.2s;
    }
    .dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes bounceFade {
      0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.45;
      }
      40% {
        transform: translateY(-11px);
        opacity: 1;
        background-color: #263d67;
      }
    }

    /* subtle fade-in + scale animation for the whole content */
    @keyframes fadeInScale {
      0% {
        opacity: 0;
        transform: scale(0.96) translateY(12px);
      }
      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    /* gentle pulse effect for logo wrapper (premium glow) */
    .logo-wrapper {
      animation: softRadialGlow 2.2s infinite alternate ease-in-out;
    }

    @keyframes softRadialGlow {
      0% {
        filter: drop-shadow(0 0 0px rgba(113, 163, 255, 0));
      }
      100% {
        filter: drop-shadow(0 0 10px rgba(113, 163, 255, 0.25));
      }
    }

    /* micro hover / interactive feeling for modern app splash (just visual) */
    .logo-illustration:hover {
      transform: scale(1.01);
    }
    /* prevent body scroll while splash is active */
    .no-scroll {
      overflow: hidden;
      height: 100%;
    }

    /* optional safe area handling for notches */
    @supports (padding: max(0px)) {
      .splash-content {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
      }
    }

/*  */
/*  */
.site__header {
  position: sticky;
  top: 12px;
  z-index: 100;
  background: #263d67;
  backdrop-filter: blur(15px) brightness(0.8);
  padding: 14px 0;
  margin: 0 10px;
  border-radius: 30px;
  box-shadow: #fff 2px 2px 8px 0;
}




.header__wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.header_logo {
  border-radius: 50%;
}

.header_title {
  color: white;
  font-size: 38px;
  font-weight: 800;
}

.navbar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.navbar_link {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.header__btn {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.header_sidebar {
  background: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  border: none;
  outline: none;
}

.header_light {
  background: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  border: none;
  outline: none;
}

.hero {
  background-image: url("/Photo/Img/hero1.png");
  background-repeat: no-repeat;
  background-position: center -300px;
  background-size: 1000px 1250px;
  width: 100%;
  height: 100vh;
  padding: 80px 0;
}

.hero__wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__content {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 5px;
  width: 600px;
}

.hero_title {
  color: white;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
}

.hero_text {
  color: white;
  font-weight:bold;
  font-size: 50px;
  width: 550px;
}

.hero_suptitle{
    color: white;
  font-weight:bold;
  font-size: 20px;
  padding: 20px 0;
  width: 350px;
}

.hero__logo {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.hero_logo {
  border-radius: 50%;
}

.hero_strong {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.hero_link {
  display: block;
  width: 130px;
  height: 45px;
  padding: 10px 35px;
  border: 3px solid white;
  border-radius: 20px;
  color: #fff;
  transition: 0.8s;
}


.hero__trendy {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border: 3px solid white;
  color: #fff;
  width: 450px;
  height: 530px;
  padding: 280px 6px;
  border-radius: 70px;
  transition: 1s ease;
}

.hero__trendy:hover {
  transform: scale(110%);
  cursor: pointer;
}

.trendy__img-content {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 100px;
}

.trendy_btn {
  border: 3px solid white;
  width: 370px;
  height: 60px;
  border-radius: 20px;
  color: #fff;
  transition: 0.7s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}

.trendy_btn:hover {
  background: green;
  color: white;
}

.trendy:hover {
  background-color: green;
}

.trendy_img {
  position: absolute;
  z-index: 1;
  top: -250px;
}

.trendy_strong {
  padding: 0px 30px;
  font-size: 40px;
  font-weight: 600;
}

.trendy_title {
  padding: 0px 28px;
  font-weight: 300;
  margin: 0;
}

.hero__comment {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
  box-shadow: 2px 2px 20px gray;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 350px;
  height: 200px;
  color: #fff;
  position: absolute;
  z-index: 1;
  bottom: -150px;
  transition: 0.5s;
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  grid-template-rows: repeat(1fr 1fr);
  padding: 28px;
}

.hero__comment:hover {
  transform: scale(110%);
  cursor: pointer;
}

.comment__content {
  padding: 2px 10px;
}

.comment_text {
  display: grid;
  grid-column: 1/3;
  grid-row: 2/3;
  color: white;
  width: 310px;
}

.comment_stars {
  cursor: pointer;
}

.pastel {
  padding: 200px 0;
}

.pastel__wraper {
  display: grid;
  grid-template-columns: repeat(1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 40px;
}

.pastel__top {
  background: rgba(255, 255, 255, 0.155);
  backdrop-filter: blur(10px) contrast(0.9);
  width: 100%;
  height: 100%;
  border-radius: 70px;
  box-shadow: 2px 2px 5px 0 white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

.pastel__top, .pastel__bottom {
  background: rgba(255, 255, 255, 0.155);
  backdrop-filter: blur(10px) contrast(0.9);
  width: 100%;
  height: 100%;
  border-radius: 70px;
  box-shadow: 2px 2px 5px 0 white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  transition: 0.5s ease-in;
}

.pastel__top:hover {
  box-shadow: 0 0 20px 10px rgb(163, 107, 1);
  cursor: pointer;
}

.pastel__bottom:hover {
  box-shadow: 0 0 20px 10px yellowgreen;
  cursor: pointer;
  background-color: orange;
}

.postel_img:nth-child(1) {
  margin-bottom: 160px;
}

.postel_img:nth-child(2) {
  margin-bottom: 60px;
}

.pastel__top-content, .pastel__bottom-content {
  width: 450px;
  padding-left: 30px;
}

.pastel_title {
  color: white;
  font-size: 42px;
  font-weight: 600;
}

.pastel_text {
  color: white;
  font-size: 13px;
  font-weight: 300;
  padding: 20px 0;
}

.postel_strong {
  color: white;
  font-size: 32px;
  font-weight: 900;
  display: block;
  padding: 0 0 10px 0;
}

.pastel_btn {
  background: transparent;
  width: 350px;
  height: 60px;
  border-radius: 20px;
  border: 2px solid white;
  color: white;
  font-size: 20px;
  transition: 0.7s;
}

.pastel_btn:hover {
  background-color: blue;
}

.shop {
  padding: 150px 0;
}

.shop__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 500px);
  gap: 50px;
}

.shop__item {
  background: rgba(255, 255, 255, 0.1647058824);
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px) brightness(0.8);
  border-radius: 20px;
  box-shadow: 0px 0px 20px 5px yellowgreen;
  transition: linear 0.3s;
}

.shop__item:hover {
  transform: scale(105%);
  cursor: pointer;
}

.shop__wraper > .shop_title-top {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1647058824);
  backdrop-filter: blur(10px) brightness(0.8);
  width: 500px;
  height: 80px;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  padding: 18px 20px;
  margin: 50px auto;
  box-shadow: 0px 0px 20px 5px yellowgreen;
}

.shop_img {
  width: 65%;
  display: block;
  margin: 0 auto;
}

.shop__content {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

.shop__item > .shop__content > .shop_title {
  font-size: 32px;
  font-weight: 600;
}

.shop__item > .shop__content > .shop_text {
  font-size: 15px;
}

.shop__item > .shop__content > .shop_link {
  display: block;
  background: transparent;
  border: 2px solid white;
  width: 250px;
  height: 45px;
  border-radius: 10px;
  padding: 12px 85px;
  color: white;
  font-size: 15px;
  transition: 0.3s linear;
}

.shop__item > .shop__content > .shop_link:hover {
  background: green;
}

.shorts__wraper {
  position: relative;
}

.shorts_video {
  width: 101%;
  border-radius: 30px;
}

.shorts_btn {
  position: absolute;
  z-index: 10;
  bottom: 10px;
  right: 570px;
  background: #fff;
  border: none;
  outline: none;
}

.users {
  padding: 150px 0;
}

.users_title {
  border: 3px solid white;
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  width: 500px;
  height: 100px;
  border-radius: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.costumers_text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.users__wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.commentt {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
  width: 409px;
  height: 250px;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 2px 2px 20px gray;
  border: 2px solid #fff;
  color: #fff;
  margin-top: 100px;
}

.commentt:hover {
  transform: scale(110%);
}

.icon_and-john {
  display: flex;
  align-items: center;
  padding: 2px 20px;
}

.john-and_stars {
  flex-direction: column;
  padding: 10px 20px;
}

.john__name {
  font-size: 30px;
}

.stars {
  cursor: pointer;
}

.john__text {
  padding: 15px 20px;
}

.information {
  padding: 150px 0;
}

.information_title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  background: #263d67;
  backdrop-filter: blur(10px) brightness(0.7);
  width: 500px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  box-shadow: 2px 2px 50px #fff;
}

.information__content {
  background: #263d67;
  backdrop-filter: blur(10px) brightness(0.7);
  padding: 35px;
  font-size: 12px;
  font-weight: 400;
  margin-top: 100px;
  border-radius: 40px;
  height:auto;
  box-shadow: 2px 2px 30px #fff;
}

.info_text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.information_text {
  font-weight: 600;
  color: white;
  padding: 30px 0;
  line-height: 1.8;
  font-size: 30px;
}

.site__footer {
  background: #263d67;
  backdrop-filter: blur(15px) brightness(0.8);
  width: 100%;
  height: 400px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding: 60px 0;
}

.footer__top-list {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.footer_icons {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  justify-items: end;
}

.footer_subtitle-logo1 {
  margin-right: 87px;
}

.footer_subtitle-logo2 {
  margin-right: 100px;
}

.footer_subtitle-logo3 {
  margin-right: 95px;
}

.footer_subtitle-logo4 {
  margin-right: 98px;
}

.footer_icons > .footer_item {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.footer_text {
  width: 350px;
  padding: 20px 0;
  font-size: 18px;
  font-weight: bold;
}

.footer_subtitle {
  font-size: 24px;
  font-weight: 800;
}

.footer__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 25px);
  padding: 20px 0;
}

.footer_item {
  font-size: 18px;
  font-weight: 400;
}

.site__sidebar {
  background: #263d67;
  backdrop-filter: blur(15px) contrast(0.75) brightness(0.8);
  height: 100%;
  width: 30%;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  animation: sidebar linear 0.8s;
  padding: 0 30px;
}

.site__sidebar .sidebar__top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site__sidebar .sidebar_btn {
  background: transparent;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: 1px solid white;
  border-radius: 5px;
  margin: 30px;
}

@keyframes sidebar {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0%);
  }
}

body {
  font-family: "Roboto";
  overflow-x: hidden;
  overflow-y: scroll;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

body a {
  text-decoration: none;
}

body img {
  max-width: 100%;
}

.hidden {
	display:none;
}
.block {
  display: block;
}

.light {
  background: #71a3ff;
  transition: ease 0.6s;
  color: #fff;
}

.dark {
  background: #395b9b;
  transition: ease 0.6s;
  color: white;
}

.bg_video {
  position: absolute;
  z-index: -1;
  top: -800px;
  left: 0;
  width: 100%;
  height: 1621.2px;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg_video2 {
  position: absolute;
  top: 820px;
  z-index: -2;
  width: 100%;
  height: 1000px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* MEDIA SCREEN - RESPONSIVE */

@media screen and (max-width: 1024px) {
  .header__logo {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
  }
  
  .header_logo {
    border-radius: 50%;
  }
  
  .header_title {
    color: white;
    font-size: 36px;
    font-weight: 800;
  }
  
  .navbar__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .navbar_link {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
  }
  
  .header_btn-icon {
    width: 35px;
  }
  
  .hero__trendy:hover{
    transform: none;
  }
  
  .hero__content {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 5px;
    width: 500px;
  }
  
  .hero_title {
    color: white;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
  }
  
  .hero_text {
    color: white;
    font-size: 16px;
    padding: 20px 0;
    width: 500px;
  }
  
  .hero__comment {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    box-shadow: 2px 2px 20px gray;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 350px;
    height: 200px;
    color: #fff;
    position: absolute;
    z-index: 1;
    bottom: -250px;
    transition: 0.5s;
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    grid-template-rows: repeat(1fr 1fr);
    padding: 28px;
  }
  
  .comment_text {
    display: grid;
    grid-column: 1/3;
    grid-row: 2/3;
    color: white;
    font-size: 14px;
    width: 280px;
  }
  
  .shop__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 450px);
    gap: 20px;
  }
  
  .information__content {
    backdrop-filter: blur(5px);
    margin-top: 100px;
    height: auto;
  }
  
  .info_text {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .information_text {
    font-weight: 600;
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .shorts{
    margin-top: 0px;
  }
  .hero__trendy:hover {
  transform: none;
  cursor: pointer;
}
  .site__header {
    position: sticky;
    top: 10px;
    z-index: 100;
    background: #263d67;
    backdrop-filter: blur(6px);
    padding: 12px 0;
    margin: 0 10px;
    border-radius: 30px;
    box-shadow: #fff 2px 2px 15px 0;
  }
  
  .header_title {
    color: white;
    font-size: 34px;
    font-weight: 800;
  }
  
  .navbar__list {
    display: none;
  }
  
  .navbar_link {
    color: #fff;
    font-weight: 800;
    font-size: 26px;
  }
  
  .header__btn {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
  }
  
  .header_btn-icon {
    width: 30px;
    border-radius: 5px;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .hero__wraper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 70px;
  }
  
  .hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 600px;
  }
  
  .hero_title {
    color: white;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
  }
  
  .hero_text {
    color: white;
    font-size: 30px;
    padding: 20px 0;
    width: 550px;
    text-align: center;
  }

  .hero_suptitle{
    text-align:center;
  }
  
  .hero__logo {
    display: none;
  }
  
  .hero_strong {
    color: white;
    font-size: 18px;
    font-weight: 400;
  }
  
  .hero_link {
    display: block;
    width: 130px;
    height: 45px;
    padding: 10px 35px;
    border: 3px solid white;
    border-radius: 20px;
    color: #fff;
    transition: 0.8s;
  }
  
  .hero_link:hover {
    background-color: blue;
  }
  
  .hero__trendy {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 3px solid white;
    color: #fff;
    width: 420px;
    height: 480px;
    padding: 250px 0 0 0;
    border-radius: 70px;
  }
  
  .trendy__img-content {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
  }

  .trendy_btn {
    display:flex;
    border: 3px solid white;
    width: 300px;
    border-radius: 20px;
    color: #fff;
    transition: 0.7s;
    margin: 0 auto;
    padding: 15px;
  }
  
  .trendy_title {
    margin: 0 auto;
    font-size: 40px;
    font-weight: 600;
  }
  
  .trendy_strong {
    margin: 0 30px;
    font-weight: 300;
    font-size: 20px;
  }
  
  .hero__comment {
    display: none;
  }
  
  .pastel {
    padding: 500px 0 100px 0;
  }
  
  .pastel__wraper {
    display: grid;
    grid-template-columns: repeat(1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 40px;
  }
  
  .postel_img:nth-child(1) {
    width: 300px;
    margin-bottom: 0px;
  }
  
  .postel_img:nth-child(2) {
    width: 400px;
    margin-bottom: 60px;
  }
  
  .pastel__top-content, .pastel__bottom-content {
    width: 320px;
    padding-left: 30px;
  }
  
  .pastel_title {
    color: white;
    font-size: 32px;
    font-weight: 600;
  }
  
  .pastel_text {
    color: white;
    font-size: 10px;
    font-weight: 300;
    padding: 20px 0;
  }
  
  .postel_strong {
    color: white;
    font-size: 28px;
    font-weight: 900;
    display: block;
    padding: 0 0 10px 0;
  }
  
  .pastel_btn {
    background: transparent;
    width: 280px;
    height: 45px;
    border-radius: 30px;
    border: 3px solid white;
    color: white;
  }
  
  .shop__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 480px);
    gap: 20px;
  }
  
  .information__content {
    backdrop-filter: blur(5px) blur(15px);
    margin-top: 100px;
    border: 3px solid #fff;
    height: auto;
  }
  
  .information_text {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  
  .site__footer {
    background: #263d67;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 550px;
    padding: 50px 40px;
  }
  
  .footer__top-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: start;
    gap: 60px;
  }
  
  .bg_video {
    position: absolute;
    z-index: -1;
    top: -800px;
    left: 0;
    width: 100%;
    height: 1700px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 480px) {
    .shorts{
    margin-top: 0px;
  }
  .site__header {
    position: sticky;
    top: 10px;
    z-index: 100;
    background: #263d67;
    backdrop-filter: blur(6px);
    padding: 10px 0;
    margin: 0 10px;
    border-radius: 30px;
    box-shadow: #fff 2px 2px 15px 0;
  }
  
  .header_title {
    color: white;
    font-size: 32px;
    font-weight: 800;
  }
  
  .navbar__list {
    display: none;
  }
  
  .navbar_link {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
  }
}

@media screen and (max-width: 380px) {
    .shorts{
    margin-top: 300px;
  }
  .hero__wraper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 70px;
  }
  
  .hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 380px;
  }
  
  .hero_title {
    color: white;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
  }
  
  .hero_text {
    color: white;
    font-size: 12px;
    padding: 20px 0;
    width: 350px;
    text-align: center;
  }
  
  .hero_strong {
    color: white;
    font-size: 18px;
    font-weight: 400;
  }
  
  .hero_link {
    display: block;
    width: 130px;
    height: 45px;
    padding: 10px 35px;
    border: 3px solid white;
    border-radius: 20px;
    color: #fff;
    transition: 0.8s;
  }
  
  .hero_link:hover {
    background-color: blue;
  }
  
  .hero__trendy {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 3px solid white;
    color: #fff;
    width: 370px;
    height: 480px;
    padding: 250px 0 0 0;
    border-radius: 70px;
  }
  
  .trendy__img-content {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
  }
  
  .trendy_btn {
    border: 3px solid white;
    width: 300px;
    height: 60px;
    border-radius: 20px;
    color: #fff;
    transition: 0.7s;
    display: block;
    margin: 0 auto;
    padding: 15px 110px;
  }
  
  .trendy_title {
    margin: 0 auto;
    font-size: 40px;
    font-weight: 600;
  }
  
  .trendy_strong {
    padding: 0 5px;
    font-weight: 300;
    font-size: 20px;
  }
  
  .pastel {
    padding: 400px 0 100px 0;
  }
  
  .pastel__wraper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 550px);
    gap: 40px;
  }
  
  .pastel__top, .pastel__bottom {
    background: rgba(255, 255, 255, 0.155);
    backdrop-filter: blur(10px) contrast(0.9);
    border-radius: 70px;
    box-shadow: 2px 2px 5px 0 white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
  }
  
  .postel_img:nth-child(1) {
    margin-bottom: -40px;
  }
  
  .postel_img:nth-child(2) {
    margin-bottom: 80px;
  }
  
  .pastel__top-content, .pastel__bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 350px;
    padding: 10px;
  }
  
  .pastel_title {
    color: white;
    font-size: 38px;
    font-weight: 600;
  }
  
  .pastel_text {
    color: white;
    font-size: 10px;
    font-weight: 300;
    padding: 20px 0;
  }
  
  .postel_strong {
    display: none;
  }
  
  .pastel_btn {
    background: transparent;
    width: 280px;
    height: 45px;
    border-radius: 30px;
    border: 3px solid white;
    color: white;
  }
  
  .shop__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 450px);
    gap: 20px;
  }
  
  .shop__wraper > .shop_title-top {
    font-size: 28px;
  }
  
  .shorts_btn {
        width: 50px;
    border-radius: 50px;
    bottom:-50px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 10;
    bottom: 0px;
    right: 170px;
    border: none;
    outline: none;
  }
  
  .information_title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
    width: 380px;
    height: 80px;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
  }
  
  .information__content {
    backdrop-filter: blur(5px);
    margin-top: 100px;
    border: 3px solid #fff;
    height: auto;
  }
  
  .information_text {
    font-weight: 400;
    font-size: 18px;
  }
  
  .site__footer {
    background: #263d67;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 720px;
    padding: 60px 25px;
  }
  
  .footer__top-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }
  
  .footer_text {
    width: 300px;
  }
  
  .site__sidebar {
    width: 100%;
  }
  
  .bg_video {
    position: absolute;
    z-index: -1;
    top: -200px;
    left: 0;
    width: 100%;
    height: 1050px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .bg_video2 {
    position: absolute;
    top: 800px;
    z-index: -2;
    width: 100%;
    height: 1500px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* 1200px dan kichik */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

/* 992px dan kichik */
@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .header_title {
    font-size: 28px;
  }
  
  .navbar__list {
    gap: 20px;
  }
  
  .hero__content {
    width: 400px;
  }
  
  .hero_title {
    font-size: 40px;
  }
  
  .hero_text {
    width: 400px;
  }
}

/* 600px dan kichik */
@media screen and (max-width: 600px) {
  .hero__trendy:hover {
  transform: none;
  cursor: pointer;
}
  .shop__list {
    grid-template-columns: 1fr !important;
  }
  
  .footer_icons {
    grid-template-columns: 1fr;
  }
}

/* 320px dan kichik - ENG KICHIK */
@media screen and (max-width: 320px) {
  .hero__trendy:hover {
  transform: none;
  cursor: pointer;
}
  .header_logo {
    width: 30px;
    height: 30px;
  }
  
  .header_title {
    font-size: 16px;
  }
  
  .header_light, .header_sidebar {
    width: 100px;
    height: 100px;
  }
  
  .hero_title {
    font-size: 22px;
  }
  
  .trendy_strong {
    font-size: 22px;
  }
  
  .pastel_title {
    font-size: 24px;
  }
}

/* LANDSCAPE ORIENTATSIYA */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero__wraper {
    gap: 20px;
  }
  
  .hero__trendy {
    padding: 100px 0 15px 0;
  }
  
  .trendy_img {
    top: -80px;
    width: 60%;
  }
}

/* TOUCH QURILMALAR UCHUN */
@media (hover: none) and (pointer: coarse) {
  button, a {
    min-height: 44px;
    min-width: 44px;
  }
}

/* HIGH DPI EKRANLAR UCHUN */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: antialiased;
  }
}

/* FOOTER RESPONSIVE */

@media screen and (max-width: 992px) {
  
  
  .site__footer {
    padding: 50px 0;
  }
  
  .footer__top-list {
    gap: 30px;
  }
  
  .footer_text {
    width: 300px;
  }
  
}

@media screen and (max-width: 768px) {
  .site__sidebar{
  width: 70%;
}

  .shorts{
    margin-top: 300px;
  }
  
  .site__footer {
    height: auto;
    padding: 40px 20px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  
  .footer__top-list {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer_item {
    width: 100%;
    text-align: center;
  }
  
  .header__logo {
    justify-content: center;
  }
  
  .footer_text {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer_icons {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
  }
  
  .footer_icons .footer_item {
    justify-content: center;
  }
  
  .footer_subtitle {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer__list {
    align-items: center;
    text-align: center;
  }
  
  .footer_subtitle-logo1,
  .footer_subtitle-logo2,
  .footer_subtitle-logo3,
  .footer_subtitle-logo4 {
    margin-right: 0;
  }
    .shorts_btn {
          width: 50px;
    border-radius: 50px;
      bottom:-50px;
    right:0px;
    left:20px;
  }
  
}

@media screen and (max-width: 480px) {
  .site__sidebar{
  width: 70%;
}

    .shorts{
    margin-top: 300px;
  }
  
  
  .site__footer {
    padding: 35px 15px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
  
  .footer__top-list {
    gap: 30px;
  }
  
  .footer_subtitle {
    font-size: 18px;
  }
  
  .footer_text {
    font-size: 14px;
    padding: 15px 0;
  }
  
  .footer_icons {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer_icons .footer_item {
    gap: 10px;
  }
  
  .footer_icon {
    width: 40px;
  }
  
  .footer_item {
    font-size: 16px;
  }
  
  .footer__list {
    grid-template-rows: repeat(4, 30px);
  }
    .shorts_btn {
      display: flex;
      margin:0 auto;
      align-items:center;
      flex-direction:column;

      border-radius:50px;
      right:0px;
      padding:10px;
      bottom:-50px;
      left:20px;
  }
}

.footer_subtitle{
    margin-top: 50px;
}

@media screen and (max-width: 380px) {
  .site__sidebar{
  width: 70%;
}


    .shorts{
    margin-top: 300px;
  }
  
  
    .shorts_btn {
      width:50px;
      border-radius:50px;
      bottom:-50px;
      right:0px;
      left:20px;
  }
  .site__footer {
    padding: 30px 10px;
  }
  
  .footer_subtitle {
    font-size: 20px;
  }
  
  .footer_text {
    font-size: 13px;
  }
  
  .footer_icon {
    width: 35px;
  }
  
  .footer_item {
    font-size: 14px;
  }
  
  .footer_subtitle-logo1,
  .footer_subtitle-logo2,
  .footer_subtitle-logo3,
  .footer_subtitle-logo4 {
    font-size: 14px;
  }
  
}

@media screen and (max-width: 320px) {

    .shorts{
    margin-top: 300px;
  }
  
  .shorts_btn {
    width: 50px;
    border-radius: 50px;
    bottom:-50px;
    right:0px;
    left:20px;
  }
  
  .site__footer {
    padding: 25px 8px;
  }
  
  .footer_subtitle {
    font-size: 18px;
  }
  
  .footer_text {
    font-size: 12px;
  }
  
  .footer_icon {
    width: 30px;
  }
  
  .footer_item {
    font-size: 13px;
  }
  
}

.header__respansive{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  gap: 40px;
  a{
    font-size: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
}


  .shorts{
    margin-top: 300px;
  }
  