* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --main-brand-color: #d40000;
}

img {
  max-width: 100%;
}

/* Home Page */

.banner-carousel .carousel-item img {
  width: 100%;
  min-height: 250px;
}

section.banner-carousel {
  position: relative;
}

.new-banner-content {
  position: absolute;
  top: 0;
  z-index: 9;
  margin-top: 30px;
  margin-left: 7%;
}

.new-banner-content h2 {
  color: #fff;
  font-size: 45px;
  letter-spacing: -2px;
}

.new-banner-content p {
  color: #fff;
  font-size: 22px;
}

.new-banner-content button {
  background-color: #fb001a;
  border: 0;
  color: #fff;
  font-size: 22px;
  padding: 7px 20px;
  border-radius: 5px;
}

.banner-carousel .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 40px;
  border: 0;
  opacity: 1;
}

.banner-carousel .carousel-indicators li.active {
  background-color: var(--main-brand-color);
}

section.banner-carousel a.carousel-control-prev,
section.banner-carousel a.carousel-control-next {
  width: 5%;
}

section.banner-carousel span.carousel-control-prev-icon,
section.banner-carousel span.carousel-control-next-icon {
  background-color: var(--main-brand-color);
  padding: 7px 10px !important;
  background-size: 15px;
  border: 1px solid red;
  width: 30px;
  height: 30px;
  border-radius: 3px;
}

.all-facility {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 35px 0;
}

.all-facility::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    90deg,
    #fb001a,
    transparent,
    #fb001a,
    transparent,
    #fb001a
  );
  background-size: 400% 400%;
  z-index: 1;
  animation: borderGlow 6s linear infinite;
  border-radius: 10px;
}

.all-facility::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #000;
  border-radius: 8px;
  z-index: 2;
}

.common-category h5 {
  font-size: 22px;
  font-weight: 500;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px red;
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 20px red;
  }

  100% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px red;
  }
}

.all-facility ul {
  display: flex;
  position: relative;
  z-index: 9;
  list-style: none;
  justify-content: space-evenly;
  margin-bottom: 0;
  padding-left: 10px;
  flex-wrap: wrap;
  row-gap: 35px;
}

.all-facility ul li {
  display: flex;
  gap: 10px;
  flex-basis: 20%;
  cursor: pointer;
  padding: 0 10px;
  align-items: center;
  transition: 0.3s;
}

.all-facility ul li span {
  width: 50px;
  height: 50px;
  background-color: #fb001a;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.all-facility ul li i {
  font-size: 24px;
  transition: 0.3s;
  font-weight: 600;
  color: #fff;
}
button.btn.btn-update i {
  color: #df0000;
}

.all-facility ul li p {
  font-size: 18px;
  transition: 0.3s;
  text-align: left;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  width: calc(100% - 50px);
}

.all-facility .e-con.e-child:hover i {
  color: red;
  transform: scale(1.2);
}

.all-facility .e-con.e-child:hover h3 {
  color: red;
}

.gaming-category {
  padding: 40px 0;
}

.gaming-card {
  position: relative;
  background: linear-gradient(135deg, #050505, #111, #050505);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: 0.35s;
  cursor: pointer;
  display: flex;
  padding: 20px;
  height: 100%;
  gap: 20px;
  align-items: center;
}

/* Red glow */

.gaming-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.35) 0%,
    rgba(255, 0, 0, 0) 70%
  );
}

/* Red diagonal lines */

.gaming-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 55px,
    rgba(255, 0, 0, 0.12) 57px,
    transparent 60px
  );
  opacity: 0.7;
}

.gaming-pcs-img img {
  transition: 0.3s;
}

.gaming-card:hover .gaming-pcs-img img {
  transform: scale(1.08);
}

.gaming-pcs-img,
.gaming-card .card-content {
  width: 50%;
  position: relative;
  z-index: 9;
}

.card-content h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.card-content span {
  display: block;
  color: #e00000;
}

.card-content p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.shop-btn {
  background: #d40000;
  color: #fff;
  font-weight: 600;
  padding: 12px 15px;
  border-radius: 4px;
  transition: 0.3s;
  display: inline-block;
}

.shop-btn:hover {
  background: var(--main-brand-color);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}

.shop-btn i {
  font-size: 12px;
}

.gaming-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
}

.service-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.service-item {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  border-right: 1px solid #e8e8e8;
  transition: 0.3s;
  min-height: 110px;
  height: 100%;
}

.service-item:hover {
  background: #fafafa;
}

.service-icon {
  width: 60px;
  min-width: 60px;
  text-align: center;
  font-size: 42px;
  color: #111;
  margin-right: 18px;
}

.service-text h5 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  line-height: 1.3;
}

.service-text p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
  transition: 0.3s;
}

.service-icon i {
  color: #d40000;
}

.top-border {
  width: 100%;
  height: 30px;
}

.top-border svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tech-details h2 {
  margin-bottom: 30px;
}

.all-specification {
  background-color: #99999908;
  border: 1px solid #9999664f;
  border-radius: 8px;
  padding: 20px;
}

.common-specification {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 2px solid #9996;
  padding: 15px;
  border-radius: 15px 0 0 0;
}

.common-specification:last-child {
  border: 0;
  padding-bottom: 0;
}

.parts-details h5 {
  margin-bottom: 2px;
  font-weight: 600;
}

section.all-product {
  margin-top: 60px;
}

.product-head {
  text-align: center;
  margin-bottom: 30px;
  background-color: #000;
  padding: 15px 0;
  border-radius: 2px;
  border-bottom: 4px solid #fb001a;
}

.product-head h2 {
  color: #fff;
  font-size: 35px;
}

.product-head h2 {
  margin-bottom: 0;
}

.parts-details ul li {
  font-size: 18px;
}

.parts-image i {
  font-size: 40px;
  color: #d40000;
}

.parts-details p {
  font-size: 18px;
  margin-bottom: 5px;
}

.common-access {
  background-color: #99999908;
  border: 1px solid #9999664f;
  border-bottom: 3px solid #d40000;
  border-radius: 8px 8px 0 0;
  padding: 20px;
  margin-bottom: 15px;
}

.common-access .parts-image {
  margin-bottom: 10px;
}

.common-access h5 {
  margin-bottom: 10px;
}

.common-access ul {
  padding-left: 20px;
}

.common-access.common-access-power {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 2px solid #9996;
  padding: 15px;
  border-radius: 15px 0 0 0;
}

.all-champion {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 40px;
}

.all-champion .common-champion {
  width: calc(50% - 25px);
}

.common-champion {
  background-color: #99999912;
  border: 1px solid #9996;
  border-radius: 15px;
}

.built-champion {
  border: 2px solid #9996;
  padding: 30px;
  border-radius: 5px;
}

.built-champion h2 {
  line-height: 1.3;
}

.built-champion h2 span {
  display: block;
  color: #d40000;
}

.built-champion h2 span {
  display: block;
  color: #d40000;
  font-size: 45px;
  font-weight: 700;
}

.built-heading p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

.tab-head {
  justify-content: center;
  width: max-content;
  align-items: center;
  margin: 0 auto 75px;
  border-top: 1px solid #9996;
  border-bottom: 1px solid #9996;
  border-radius: 0;
}

.addition-head .row {
  align-items: baseline;
}

.addition-head h2 {
  font-size: 45px;
  font-weight: 700;
}

.addition-head h2 span {
  color: #cb0302;
}

.nav.nav-tabs.tab-head button {
  font-size: 22px;
  font-weight: 600;
  border-right: 1px solid #9996;
  border-radius: 0px;
  padding: 17px 30px;
}

.nav.nav-tabs.tab-head button.active {
  background-color: #cb0302;
  color: #fff !important;
  border-color: #cb0302;
}

.nav.nav-tabs.tab-head li:nth-of-type(1) button {
  border-left: 1px solid #9996;
}

section.condition {
  margin: 70px 0;
  padding: 0 12px;
}

.condition-facility h5 {
  margin-bottom: 0;
  font-size: 25px;
}

.condition .row {
  background-color: #99999921;
  border: 1px solid #9996;
  border: 1px solid #9996;
  padding: 30px;
  border-radius: 5px;
  align-items: center;
}

.condition-facility {
  display: flex;
  gap: 20px;
}

.condition-facility i {
  font-size: 50px;
  color: #d40000;
}

.condition-facility {
  display: flex;
  gap: 20px;
  border-right: 1px solid #9996;
}

.condition-facility h2 span {
  color: #d40000;
  display: block;
  font-size: 50px;
  font-weight: 700;
}

.select-model h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.select-model {
  border: 1px solid #9999993d;
  background-color: #99999912;
  padding: 20px;
  border-radius: 10px;
}

.select-model select {
  width: 100%;
  padding: 15px 7px;
  border: 3px solid #d40000;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  outline: #d40000;
}

.select-cart {
  margin-top: 25px;
}

.cart-price {
  padding-left: 15px;
}

.cart-price h2 {
  font-size: 40px;
  color: #d40000;
  margin-bottom: 15px;
}

.cart-number {
  display: flex;
  align-items: center;
  border: 1px solid #996;
  border-radius: 5px;
  width: calc(50% - 10px);
  max-width: max-content;
}

.cart-number button {
  border: 0;
  background-color: transparent;
  font-size: 25px;
  padding: 10px;
}

.cart-number p {
  margin-bottom: 0;
  font-size: 25px;
  padding: 10px 20px;
  border-left: 1px solid #9996;
  border-right: 1px solid #9996;
}

.add-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-btn {
  background-color: #d40000;
  border: #d40000;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 10px;
  width: calc(50% - 10px);
}

.card-btn i {
  padding-right: 10px;
}

.description-tab-sec {
  margin-bottom: 220px;
}

.spec-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  height: 100%;
}

.header-icon i {
  font-size: 28px;
  margin-right: 15px;
  text-shadow:
    0 0 3px #fb001a,
    0 0 6px #fb001a,
    0 0 12px var(--main-brand-color),
    0 0 20px var(--main-brand-color),
    0 0 30px var(--main-brand-color);
}

.spec-header {
  display: flex;
  align-items: center;
  padding: 0 25px;
  color: #fff;
  background: linear-gradient(90deg, #0d0d0d 0%, #171717 70%, #2b0000 100%);
  position: relative;
  min-height: 70px;
}

.spec-header h3 {
  color: #fff;
  padding-left: 15px;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 9;
}

.spec-header .line {
  position: absolute;
  height: 3px;
  background: #ff2020;
  box-shadow: 0 0 10px #ff2020;
}

.spec-header .l1 {
  width: 70px;
  top: 18px;
  right: 15px;
  transform: skew(-45deg);
}

.spec-header .l2 {
  width: 40px;
  top: 30px;
  right: 55px;
  transform: skew(-45deg);
}

.spec-header .l3 {
  width: 90px;
  top: 42px;
  right: 0;
  transform: skew(-45deg);
}

.spec-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(255, 0, 0, 0.18) 55%,
    transparent 65%
  );
}

.spec-table td {
  padding: 18px 22px;
  vertical-align: middle;
  border-top: 1px solid #ececec;
  font-size: 20px;
}

.spec-table tr:first-child td {
  border-top: none;
}

.spec-table td:first-child {
  width: 45%;
  font-weight: 600;
  border-right: 1px solid #ececec;
  color: #222;
}

.spec-table i {
  width: 22px;
  text-align: center;
  color: #ff1e1e;
  font-size: 20px;
  margin-right: 10px;
}

.spec-table tr:hover {
  background: #fff7f7;
  transition: 0.3s;
}

.facility-box {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-box {
  display: flex;
  align-items: center;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: 0.35s;
  border-right: 3px solid #d40000;
  margin-bottom: 20px;
  padding: 20px;
  gap: 50px;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #111;
  color: #d40000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  position: relative;
  border-radius: 5px;
}

.feature-icon:after {
  content: "";
  position: absolute;
  right: -27px;
  top: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #111;
}

.feature-content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.feature-content p {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.feature-content span {
  font-size: 20px;
  color: #333;
}

.included-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  height: 100%;
}

.include-top-title {
  background: linear-gradient(90deg, #111, #b30000);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.include-top-title i {
  font-size: 28px;
  margin-right: 15px;
  text-shadow:
    0 0 3px #fb001a,
    0 0 6px #fb001a,
    0 0 12px var(--main-brand-color),
    0 0 20px var(--main-brand-color),
    0 0 30px var(--main-brand-color);
}

.include-top-title.spec-header .line {
  background: #fff;
}

.included-list {
  list-style: none;
  padding: 50px 40px 0;
  margin: 0;
}

.included-list li {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  font-size: 20px;
  color: #222;
  font-weight: 500;
}

.included-list i {
  color: #ff1b1b;
  font-size: 22px;
  min-width: 40px;
}

.pc-img {
  max-width: 100%;
  padding: 20px;
}

.include-bottom-box {
  background: linear-gradient(120deg, #111, #1d1d1d);
  color: #fff;
  margin: 0 25px 25px;
  border-radius: 15px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: calc(100% - 50px);
}

.include-bottom-box:after {
  content: "";
  position: absolute;
  right: -80px;
  top: 0;
  width: 160px;
  height: 100%;
  background: #ff2020;
  transform: skewX(-35deg);
}

.shield {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff2d2d;
  font-size: 30px;
}

.include-bottom-box h4 {
  margin: 0;
  font-size: 26px;
  z-index: 2;
  position: relative;
}

.include-bottom-box span {
  color: #ff3030;
}

.include-bottom-box p {
  margin: 6px 0 0;
  font-size: 20px;
  color: #ddd;
  z-index: 2;
  position: relative;
}

.addition-head {
  margin-bottom: 25px;
}

.addition-head p {
  font-size: 20px;
  font-weight: 600;
}

.bundle-section {
  padding: 40px 0;
}

.bundle-card {
  position: relative;
  background: #fff;
  border: 2px solid #fb001a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bundle-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bundle-image img {
  position: relative;
  z-index: 2;
  max-height: 280px;
}

.bundle-content {
  padding: 35px;
}

.bundle-value {
  display: flex;
  align-items: center;
}

.bundle-title {
  color: #cb0302;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
}
.bundle-content h3 {
  padding: 10px 0;
  font-size: 22px;
  font-weight: 600;
  color: #222;
  line-height: 1.45;
}

.best-value {
  margin-left: 15px;
  background: #cb0302;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 18px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.bundle-content hr {
  margin-bottom: 25px;
  border-top: 1px solid #ddd;
}

.heading-line {
  width: 140px;
  height: 4px;
  background: #000;
  position: relative;
  margin: auto;
}

.heading-line::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 4px;
  background: #d40000;
  top: 12px;
}

.left-line::before {
  left: 20px;
}

.right-line::before {
  right: 20px;
}

.heading-line::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 4px;
  background: #bfbfbf;
  top: -12px;
  left: 0;
}

.right-line::after {
  right: 0;
  left: auto;
}

.bundle-box {
  display: flex;
  align-items: center;
  border: 2px solid #efb0b0;
  border-radius: 10px;
  padding: 15px;
  transition: 0.3s;
  height: 100%;
}

.bundle-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: #fb001a;
}

.bundle-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #fb001a;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: #fb001a;
  font-size: 22px;
}
.bundle-feat-content {
  width: calc(100% - 50px);
}

.bundle-box h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.bundle-box small {
  color: #666;
  font-size: 13px;
  display: block;
}

.delivery-card {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  margin-bottom: 30px;
}

.delivery-image {
  padding: 25px;
}

.divider {
  width: 1px;
  height: 170px;
  background: #dddddd;
  margin: auto;
}

.delivery-content {
  padding: 30px;
}

.title-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d80000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-right: 20px;
  box-shadow: 0 0 20px rgba(216, 0, 0, 0.35);
}

.title-box h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.title-box span {
  color: #d80000;
}

.red-line {
  width: 70px;
  height: 4px;
  background: #d80000;
  margin-top: 8px;
}

.delivery-content h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.delivery-content p {
  font-size: 22px;
  color: #666;
  line-height: 1.5;
}

.delivery-card .row {
  align-items: center;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.5s;
  margin-bottom: 35px;
}

.review-user {
  display: flex;
  align-items: center;
}

.user-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffe7e7;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
  font-size: 60px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}

.user-info {
  margin-left: 25px;
}

.user-info h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.user-info p {
  font-size: 22px;
  color: #666;
  margin-bottom: 18px;
}

.verified {
  display: inline-flex;
  align-items: center;
  border: 2px solid #ef3b3b;
  color: #ef3b3b;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 22px;
  font-weight: 600;
}

.verified i {
  margin-right: 8px;
}

.divider {
  width: 1px;
  height: 200px;
  background: #dddddd;
}

.review-content {
  position: relative;
}

.stars {
  color: #fdb813;
  font-size: 34px;
  margin-bottom: 15px;
}

.review-content h2 {
  font-size: 44px;
  margin-bottom: 15px;
}

.review-content p {
  font-size: 25px;
  color: #444;
  line-height: 1.6;
}

.quote {
  position: absolute;
  top: 0;
  right: 0px;
  color: #cb03021c;
  font-size: 90px;
}

.review-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cart-head h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.cart-head h1 span {
  color: #cb0302;
}

.cart-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
}

.cart-header {
  background: #0d1118;
  color: #fff;
  padding: 18px 25px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.cart-header .row > div {
  font-weight: 700;
}

.cart-item {
  padding: 35px 25px;
  border-bottom: 1px solid #ececec;
  display: none;
}

.media {
  align-items: flex-start;
  position: relative;
}

.remove-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff5f5;
  color: #e11d2e;
  font-size: 18px;
  margin-right: 20px;
  transition: 0.3s;
  flex-shrink: 0;
}

.remove-btn:hover {
  background: #e11d2e;
  color: #fff;
}

.product-img {
  width: 180px;
  max-width: 100%;
}

.bundle-list {
  padding-left: 18px;
  margin-bottom: 25px;
}

.bundle-list li {
  font-size: 18px;
  line-height: 1.7;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.specs span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #444;
}

.specs i {
  margin-right: 8px;
  font-size: 18px;
  color: #111;
}

.price {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.qty-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  width: 120px;
  margin: auto;
}

.qty-box button {
  width: 40px;
  height: 45px;
  border: none;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.qty-box button:hover {
  background: #111;
  color: #fff;
}

.qty-box input {
  width: 40px;
  height: 45px;
  border: none;
  text-align: center;
  font-weight: 600;
  outline: none;
}

.subtotal {
  color: #d91d26;
  font-size: 30px;
  font-weight: 600;
}

.coupon-area {
  padding: 30px 25px;
}

.coupon-info {
  display: flex;
  align-items: center;
}

.mobile-cart-item .row {
  align-items: center;
}
.mobile-cart-item {
  padding-right: 20px;
  display: none;
}
.mobile-cart-item button.remove-btn {
  position: absolute;
  top: 20px;
  left: 30px;
}
.mobile-cart-price {
  padding-left: 30px;
}
.mobile-cart-price h4 {
  font-weight: 600;
}
.mobile-cart-price span.new-price {
  color: #df0000;
  font-weight: 600;
  margin-right: 10px;
  font-size: 20px;
}
.mobile-cart-item .col-md-12 {
  margin-top: 30px;
}
.mobile-cart-item h2 {
  font-size: 28px;
  line-height: 1.3;
}
.mobile-cart-item h2 span {
  color: #df0000;
}

.coupon-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #fff5f5;
  color: #e11d2e;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 15px;
}

.coupon-info h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.coupon-info p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.input-group .form-control {
  height: 55px;
  border-radius: 4px 0 0 4px;
}

.input-group .btn {
  padding: 0 30px;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
}

.btn-update {
  border: 1px solid #ddd;
  background: #fff;
  height: 55px;
  padding: 0 30px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-update:hover {
  background: #111;
  color: #fff;
}

.cart-total-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.cart-price-sec {
  display: flex;
  align-items: center;
}

.cart-price-sec h3 {
  margin: 0 0 0 18px;
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.cart-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffeaea;
  color: #e00000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

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

.price-row span {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.price-row strong {
  font-size: 22px;
  color: #111;
}

.shipping-box h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.custom-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.custom-control-label {
  font-size: 20px;
  cursor: pointer;
}

.shipping-price {
  color: #18a83f;
  font-size: 18px;
  font-weight: 600;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #e00000;
  background: #fff;
}

.custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e00000;
  top: 0.48rem;
  left: -1.28rem;
}

.shipping-note {
  margin: 20px 0 0;
  color: #777;
  font-size: 16px;
  line-height: 1.8;
}

.total-row h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.total-row small {
  color: #888;
  font-size: 15px;
}

.total-row h2 {
  color: #e00000;
  font-size: 46px;
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
  margin-top: 30px;
  border: none;
  background: #df0000;
  color: #fff;
  height: 60px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #b80000;
}

.payment-box {
  text-align: center;
}

.payment-box p {
  font-weight: 700;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-icons img {
  width: 58px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  padding: 5px;
  object-fit: contain;
  transition: 0.3s;
}

.payment-icons img:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.feature-bar {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 30px 25px;
  border-right: 1px solid #ececec;
  transition: 0.3s;
  min-height: 110px;
}

.feature-item:hover {
  background: #fafafa;
}

.cart-feature-icon {
  width: 55px;
  text-align: center;
  font-size: 38px;
  color: #111;
  margin-right: 20px;
}
.cart-feature-icon i {
  color: #df0000;
}
.feature-content h5 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.feature-content p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

.border-right-0 {
  border-right: none !important;
}

.banner-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    #050505 0%,
    #050505 35%,
    #0b0b0b 60%,
    #130000 100%
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 30px 30px;
}

.banner-wrapper:before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.6) 0%,
    rgba(255, 0, 0, 0.2) 40%,
    transparent 75%
  );
}

.banner-wrapper:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 75px,
    rgba(255, 0, 0, 0.12) 78px,
    transparent 82px
  );
  opacity: 0.45;
}
.budget-banner-head {
  position: relative;
  z-index: 99;
}
.banner-wrapper .col-lg-7 {
  display: flex;
  align-items: center;
}

.budget-banner-head h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.budget-banner-head .white {
  color: #fff;
}

.budget-banner-head .red {
  color: #e40000;
}

.budget-banner-head h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 5px;
}

.budget-banner-head p {
  color: #d7d7d7;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.banner-image {
  position: relative;
  z-index: 5;
  text-align: center;
}

.banner-image img {
  max-height: 200px;
  transition: 0.35s;
}

.banner-wrapper:hover .banner-image img {
  transform: scale(1.08);
}

.budget-game-area {
  position: relative;
  z-index: 5;
}

.budget-game-box {
  display: flex;
  align-items: flex-start;
  color: #fff;
  transition: 0.3s;
}

.budget-game-box i {
  font-size: 34px;
  color: #e40000;
  margin-right: 14px;
  width: 38px;
}

.budget-game-box h6 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  text-transform: uppercase;
}

.budget-game-box p {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.budget-game-box:hover {
  transform: translateY(-4px);
}

.budget-game-box:hover i {
  transform: scale(1.15);
  transition: 0.3s;
}

section.all-budget-product {
  margin-top: 80px;
}

.sidebar {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.row.align-items-center.sort-head {
  margin-bottom: 15px;
}

.price-slider {
  margin-bottom: 25px;
}

#priceRange {
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  background: transparent;
}

#priceRange::-webkit-slider-runnable-track {
  height: 4px;
  background: #d50000;
  border-radius: 10px;
}

#priceRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d50000;
  margin-top: -7px;
  cursor: pointer;
}

#priceRange::-moz-range-track {
  height: 4px;
  background: #d50000;
}

#priceRange::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: #d50000;
}

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

.price-bottom span {
  font-size: 20px;
  font-weight: 600;
}

.btn-filter {
  background: #d50000;
  color: #fff;
  padding: 8px 28px;
  font-weight: 700;
  border-radius: 4px;
}

.btn-filter:hover {
  background: #b40000;
  color: #fff;
}

.product-item {
  display: flex;
  margin-bottom: 28px;
  transition: 0.3s;
}

.product-item:hover {
  transform: translateX(5px);
}

.product-item img {
  width: 85px;
  margin-right: 15px;
}

.product-info h6 {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #222;
  font-weight: 600;
}

.stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 8px;
}

.product-info strong {
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.help-banner {
  position: relative;
  margin-top: 35px;
  background: linear-gradient(135deg, #050505, #111, #000);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 25px;
  min-height: 180px;
}

.help-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.45), transparent 70%);
}

.help-banner-content {
  position: relative;
  z-index: 5;
}

.help-banner-content h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.help-banner-content p {
  color: #ddd;
  margin-bottom: 22px;
}

.btn-contact {
  background: #d50000;
  color: #fff;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 4px;
}

.btn-contact:hover {
  background: var(--main-brand-color);
  color: #fff;
}

.headset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  transition: 0.3s;
}

.help-banner:hover .headset {
  transform: scale(1.08);
}

.shop-toolbar {
  background: #fff;
  border-bottom: 1px solid #ececec;
}

/* Breadcrumb */

.custom-breadcrumb {
  background: none;
  padding: 0;
}

.custom-breadcrumb .breadcrumb-item {
  font-size: 15px;
}

.custom-breadcrumb .breadcrumb-item a {
  color: #555;
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #b40000;
  font-weight: 700;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #888;
}

/* Right */

.toolbar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.result-text {
  font-size: 15px;
  color: #444;
}

.result-text strong {
  color: #b40000;
}

/* View Buttons */

.view-buttons {
  display: flex;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.view-buttons button {
  width: 42px;
  height: 42px;
  border: none;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.view-buttons button i {
  font-size: 16px;
}

.view-buttons button.active {
  color: #d60000;
}

.view-buttons button:hover {
  background: #f8f8f8;
}

/* Select */

.sort-select {
  width: 190px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  box-shadow: none;
}

.sort-select:focus {
  box-shadow: none;
  border-color: #d60000;
}

.product-section {
  padding: 40px 0;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.35s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d60000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  z-index: 5;
}

.wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  transition: 0.3s;
  z-index: 5;
  text-decoration: none;
}

.wishlist:hover {
  background: #d60000;
  color: #fff;
}

.product-image {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.product-image img {
  max-height: 220px;
  transition: 0.4s;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.spec-row {
  display: flex;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.spec-item {
  flex: 1;
  text-align: center;
  padding: 12px 5px;
  border-right: 1px solid #eee;
}

.spec-item:last-child {
  border-right: none;
}

.spec-item i {
  display: block;
  font-size: 18px;
  color: #222;
  margin-bottom: 6px;
}

.spec-item span {
  font-size: 11px;
  font-weight: 600;
  color: #555;
}

.product-title {
  padding: 18px 18px 10px;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.45;
  min-height: 105px;
  margin-top: 20px;
}

.product-card h4 {
  padding: 18px 18px 10px;
  font-size: 22px;
  color: #222;
  line-height: 1.45;
  min-height: 105px;
  margin-top: 10px;
}

.price-box {
  padding: 0 18px 20px;
}

.sale-price {
  color: #d60000;
  font-size: 26px;
  font-weight: 700;
  margin-right: 12px;
}

.old-price {
  color: #888;
  font-size: 20px;
  text-decoration: line-through;
}

.product-btns {
  display: flex;
  padding: 0 18px 18px;
}

.cart-btn {
  flex: 1;
  background: #d60000;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #b80000;
  color: #fff;
  text-decoration: none;
}

.view-btn {
  width: 54px;
  margin-left: 10px;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  transition: 0.3s;
  text-decoration: none;
}

.view-btn:hover {
  background: #111;
  color: #fff;
  text-decoration: none;
}

/* why Choose */

.why-choose-sec {
  margin-top: 80px;
}

.why-section {
  position: relative;
  background: #fff;
  padding: 70px 15px 60px;
  overflow: hidden;
}

/* .dot-left,
.dot-right{

    position:absolute;
    width:140px;
    height:140px;
    opacity:.18;
    pointer-events:none;

}

.dot-left{

    left:0;
    top:40px;

    background-image:
    radial-gradient(var(--main-brand-color) 1.6px, transparent 1.6px);

    background-size:14px 14px;

}

.dot-right{

    right:0;
    top:70px;

    background-image:
    radial-gradient(var(--main-brand-color) 1.6px, transparent 1.6px);

    background-size:14px 14px;

} */

.choose-head {
  text-align: center;
}

.choose-head h4 {
  font-size: 62px;
  font-weight: 800;
  color: #111;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.choose-head h2 {
  margin-bottom: 18px;
  font-size: 100px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.black-text {
  color: #111;

  text-shadow:
    0 2px 0 #666,
    0 6px 14px rgba(0, 0, 0, 0.12);
}

.red-text {
  color: #d60000;

  margin-left: 15px;

  text-shadow:
    0 2px 0 #ff7070,
    0 6px 15px rgba(214, 0, 0, 0.25);
}

.choose-title-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto 30px;
}

.choose-title-banner .choose-built-text {
  background: linear-gradient(90deg, #c40000, #ff2323);
  color: #fff;
  padding: 14px 45px;
  letter-spacing: 1px;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
}
.choose-built-text h5 {
  margin-bottom: 0;
}

.left-stripe,
.right-stripe {
  position: relative;
  width: 60px;
  height: 42px;
}

.left-stripe:before,
.left-stripe:after,
.right-stripe:before,
.right-stripe:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 42px;
  background: #ef4b4b;
  transform: skew(-25deg);
}

.left-stripe:before {
  right: 34px;
}

.left-stripe:after {
  right: 18px;
}

.left-stripe {
  margin-right: 8px;
}

.left-stripe::marker {
  display: none;
}

.left-stripe span {
  display: none;
}

.right-stripe:before {
  left: 18px;
}

.right-stripe:after {
  left: 34px;
}

.right-stripe {
  margin-left: 8px;
}

.choose-description {
  max-width: 820px;
  margin: auto;
}

.choose-description p {
  font-size: 20px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}

.why-section:hover .main-title {
  transform: scale(1.02);
}

.why-buy {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.pc-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 650px;
}

.circle-bg {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 16px solid #f1f1f1;
}

.circle-bg::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 35px;
  right: 35px;
  bottom: 35px;
  border-radius: 50%;
  border: 12px solid #f5f5f5;
}

.circle-bg::after {
  content: "";
  position: absolute;
  top: 75px;
  left: 75px;
  right: 75px;
  bottom: 75px;
  border-radius: 50%;
  border: 8px solid #fafafa;
}

.pc-image {
  position: relative;
  z-index: 5;
  max-height: 620px;
  transition: 0.4s;
}

.pc-image:hover {
  transform: scale(1.03);
}

.choose-feature-box {
  position: relative;
  display: flex;
  align-items: center;
  margin: 45px 0;
}

.choose-feature-box.left {
  padding-right: 50px;
}

.choose-feature-box.right {
  padding-left: 50px;
}

.choose-icon-circle {
  width: 90px;
  height: 90px;
  min-width: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid #efefef;
  z-index: 3;
}

.choose-icon-circle i {
  font-size: 38px;
  color: #d80000;
}

.choose-feature-text {
  padding: 0 20px;
}

.choose-feature-text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #111;
}

.choose-feature-text p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.connector {
  position: absolute;
  width: 90px;
  height: 2px;
  background: #df2b2b;
  top: 50%;
}

.connector::after {
  content: "";
  position: absolute;
  right: 0px;
  top: -5px;
  width: 12px;
  height: 12px;
  background: #df2b2b;
  border-radius: 50%;
}

.left .connector {
  right: -50px;
}

.left .connector::before {
  content: "";
  position: absolute;
  right: 22px;
  left: -26px;
  top: 10px;
  width: 30px;
  height: 2px;
  background: #df2b2b;
  transform: rotate(-40deg);
}

.right .connector {
  left: -80px;
}

.right .connector::after {
  left: -8px;
}

.right .connector::before {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background: #df2b2b;
  transform: rotate(40deg);
}

.feature-box {
  transition: 0.35s;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box:hover .icon-circle {
  background: #d80000;
}

.feature-box:hover .icon-circle i {
  color: #fff;
}

.feature-box:hover .connector {
  width: 110px;
}

.trust-section {
  padding: 60px 0;
}

.trust-wrapper {
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: visible;
  padding: 15px 0 30px;
}

.trust-box {
  text-align: center;
  padding: 15px 20px 20px;
  border-right: 1px solid #ececec;
  transition: 0.35s;
  min-height: 250px;
}

.trust-box:hover {
  transform: translateY(-8px);
}

.border-0 {
  border-right: none !important;
}

.trust-icon {
  margin-bottom: 18px;
}

.trust-icon i {
  font-size: 58px;
  color: #d70000;
  transition: 0.3s;
}

.trust-box:nth-child(4) .trust-icon i,
.trust-box:nth-child(6) .trust-icon i {
  color: #111;
}

.trust-box:hover .trust-icon i {
  transform: scale(1.12);
}

.trust-box h4 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  line-height: 1.25;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.trust-box p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.trust-bottom-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #d60000;
  border-radius: 50px;
  padding: 14px 35px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.trust-bottom-badge:hover {
  transform: translateX(-50%) scale(1.02);
}

.trust-bottom-badge i {
  font-size: 28px;
  color: #111;
  margin-right: 12px;
}

.trust-bottom-badge span {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-bottom-badge strong {
  color: #d60000;
}

/* About Us */

.about-feature-section {
  margin-bottom: 80px;
}

.about-section {
  position: relative;
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.banner-section-tag {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.banner-section-tag .line {
  width: 45px;
  height: 3px;
  background: #111;
  margin-right: 12px;
}

.text-black {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-right: 8px;
}

.text-red {
  color: #e30000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-content h1 {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-content .black-title {
  color: #111;
}

.about-content .red-title {
  color: #e30000;
}

.about-content .red-divider {
  width: 80px;
  height: 4px;
  background: #e30000;
  margin-bottom: 30px;
}

.about-content p {
  color: #555;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.about-image {
  position: relative;
}

.support-badge {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 20px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: 0.35s;
}

.badge-icon {
  width: 80px;
  height: 80px;
  margin: auto auto 18px;
  border-radius: 50%;
  background: #e30000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  border: 8px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.support-badge h4 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
}

.support-badge h4 span {
  display: block;
  color: #e30000;
}

.support-badge:hover {
  transform: translateY(-8px);
}

.about-content {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-feature-wrapper {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-feature-box {
  text-align: center;
  padding: 20px 20px;
  min-height: 340px;
  border-right: 1px solid #ececec;
  transition: 0.35s;
  position: relative;
  box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.about-feature-box:hover {
  transform: translateY(-8px);
  background: #fafafa;
}

.about-feature-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border: 2px solid #e00000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.35s;
}

.about-feature-icon i {
  font-size: 36px;
  color: #111;
  transition: 0.35s;
}

.about-feature-box:hover .about-feature-icon {
  background: #e00000;
  border-color: #e00000;
}

.about-feature-box:hover .about-feature-icon i {
  color: #fff;
  transform: scale(1.1);
}

.about-feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-feature-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.about-feature-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #e00000;
  transition: 0.35s;
}

.about-feature-box:hover::before {
  width: 100%;
}

.about-stats-section {
  position: relative;
  margin-bottom: 80px;
}

.about-dots-left,
.about-dots-right {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.about-dots-left {
  left: 00px;
  bottom: -50px;
  background-image: radial-gradient(#e10000 1.6px, transparent 1.6px);
  background-size: 14px 14px;
}

.about-dots-right {
  right: 0;
  bottom: -50px;
  background-image: radial-gradient(#e10000 1.6px, transparent 1.6px);
  background-size: 14px 14px;
}

.about-stats-wrapper {
  background: #111216;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.about-stats-section .trust-bottom-badge {
  margin-top: -30px;
}

.about-stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.35s;
  min-height: 190px;
  position: relative;
}

.about-stat-box:hover {
  background: #181818;
}

.border-0 {
  border-right: none !important;
}

.about-stat-icon {
  margin-right: 30px;
}

.about-stat-icon i {
  font-size: 40px;
  color: #e10000;
  transition: 0.35s;
}

.about-stat-box:hover .about-stat-icon i {
  transform: scale(1.12);
}

.about-stat-content h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1;
}

.about-stat-content span {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-stat-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #e10000;
  transition: 0.35s;
}

.about-stat-box:hover::after {
  width: 100%;
}

/* faq */

.faq-banner {
  position: relative;
  background: #fff;
  overflow: hidden;
  margin-top: 75px;
}
.faq-card {
  display: flex;
  margin-bottom: 20px;
}
.faq-img {
  width: 120px;
  background-color: #10131c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 5px;
}
.faq-img i {
  font-size: 40px;
  color: #d80000;
}
.faq-content {
  background-color: #fff;
  box-shadow: 0 0 10px #9996;
  border-radius: 5px;
  margin-left: -5px;
  width: calc(100% - 120px);
  padding-right: 50px;
}
.faq-content .card-header button {
  box-shadow: none;
}
.faq-content .card-header button {
  box-shadow: none;
  font-size: 18px;
  font-weight: 600;
  color: #000000d1;
  text-decoration: none;
}

.faq-card .card-header {
  background-color: transparent;
  padding: 0 5px;
  border-bottom: 0;
}
.faq-content .card-body {
  padding-top: 0;
}
.faq-content .card-body {
  padding: 0 20px 8px;
}

.left-dots {
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#d60000 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.25;
}
.dots-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#d60000 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  opacity: 0.22;
}
.shape-right {
  position: absolute;
  right: -230px;
  top: 100px;
  width: 450px;
  height: 450px;
  background: #d50000;
  transform: rotate(45deg);
  z-index: 0;
}
.faq-card .card-header button {
  background-color: transparent;
  border: 0;
  padding-left: 15px;
  width: 100%;
  text-align: left;
  position: relative;
}

.collapse {
  position: relative;
}
/* .collapse::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  top: -30px;
  transform: rotate(180deg);
  transition: 0.5s;
} */
.faq-card .card-header button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  top: 0px;
  transition: 0.5s;
}

.faq-card .card-header button.collapsed::after {
  transform: rotate(180deg);
}

/* Right red shape */

.right-red {
  position: absolute;

  right: -120px;

  bottom: -80px;

  width: 350px;

  height: 350px;

  background: #d90000;

  transform: rotate(45deg);
}

/* Text */

.faq-small-title {
  display: flex;

  align-items: center;

  justify-content: center;

  color: #c40000;

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 10px;
}

.faq-small-title .line {
  width: 70px;

  height: 3px;

  background: #d00000;

  margin: 0 15px;
}

.faq-head-content {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.faq-head-content h1 {
  font-size: 95px;
  line-height: 0.95;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.faq-head-content h1 span {
  color: #d80000;
}

.faq-divider {
  display: flex;

  align-items: center;

  justify-content: center;

  margin: 20px 0;
}

.faq-divider span {
  width: 140px;

  height: 2px;

  background: #222;
}

.faq-divider i {
  margin: 0 15px;

  color: #d70000;

  font-size: 28px;
}

.faq-head-content p {
  font-size: 25px;
  color: #555;
}

.faq-head-content p strong {
  color: #d80000;
  font-weight: 600;
}

/* Image */

.faq-image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  max-width: 260px;
}

.faq-image img {
  max-height: 360px;

  transition: 0.4s;
}

.faq-image img:hover {
  transform: scale(1.05);
}

/* Responsive */

@media screen and (max-width: 1670px) {
  .cart-price h2 {
    font-size: 30px;
  }
  .card-btn {
    padding: 10px 5px;
  }
  .add-cart {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
  }
  .cart-head h1 {
    font-size: 40px;
  }
  .cart-total-card {
    padding: 20px;
  }
  .price-row span,
  .price-row strong {
    font-size: 20px;
  }
  .shipping-box h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .custom-control-label {
    font-size: 18px;
  }
  .total-row h2 {
    font-size: 36px;
  }
  button.remove-btn {
    position: absolute;
    top: -20px;
  }
  .media-body h4 {
    font-size: 20px;
  }
  .bundle-list {
    padding-left: 0px;
    margin-bottom: 15px;
  }
  .bundle-list li {
    font-size: 16px;
    line-height: 1.5;
  }
  .specs {
    gap: 15px;
  }
  .price,
  .subtotal {
    font-size: 25px;
  }
  .coupon-area .input-group input {
    width: 100%;
  }
  .coupon-area .input-group button.btn.btn-dark {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 4px;
  }
  .faq-head-content h1 {
    font-size: 75px;
  }
}

@media screen and (max-width: 1450px) {
  .new-banner-content h2 {
    font-size: 35px;
  }
  .new-banner-content p {
    font-size: 20px;
  }

  .card-content p {
    font-size: 16px;
    line-height: 1.3;
  }

  .card-content h3 {
    font-size: 20px;
  }
  .choose-head h4 {
    font-size: 52px;
  }
  .choose-head h2 {
    font-size: 80px;
  }
  .choose-feature-box.left {
    padding-right: 0;
  }
  .choose-icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .choose-icon-circle i {
    font-size: 25px;
  }
  .choose-feature-text {
    padding: 0 10px;
  }
  .choose-feature-text h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .choose-feature-text p {
    font-size: 18px;
  }
  .circle-bg,
  .connector {
    display: none;
  }
  .trust-box h4 {
    font-size: 17px;
  }
  .trust-box p {
    font-size: 16px;
  }
  .trust-bottom-badge span {
    font-size: 23px;
    font-weight: 600;
  }

  .about-content h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .about-content p {
    font-size: 18px;
    line-height: 1.5;
  }
  .banner-section-tag {
    margin-bottom: 10px;
  }
  .about-content .red-divider {
    margin-bottom: 20px;
  }
  .support-badge {
    width: 210px;
    padding: 15px 15px;
  }
  .support-badge h4 {
    font-size: 24px;
  }
  .about-feature-wrapper .row {
    row-gap: 25px;
  }
  .gaming-card {
    flex-wrap: wrap;
  }
  .gaming-pcs-img,
  .gaming-card .card-content {
    width: 100%;
  }
  .cart-number {
    width: max-content;
  }
  .card-btn {
    width: 60%;
    min-width: max-content;
    padding: 12px 13px;
  }
  .condition-facility h2 span {
    font-size: 40px;
  }
  .condition-facility i {
    font-size: 40px;
  }
  .condition-facility h5 {
    font-size: 20px;
  }
  .nav.nav-tabs.tab-head button {
    font-size: 20px;
  }
  .spec-header h3 {
    padding-left: 5px;
    font-size: 24px;
  }
  .spec-table td {
    padding: 15px 15px;
    font-size: 18px;
  }
  .include-bottom-box {
    padding: 15px 15px;
  }
  .included-list {
    padding: 20px 20px 0;
  }
  .included-list li {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .include-bottom-box h4 {
    font-size: 22px;
  }
  .include-bottom-content {
    width: calc(100% - 50px);
  }
  .include-bottom-box p {
    font-size: 18px;
  }
  .feature-content h4 {
    font-size: 24px;
    font-weight: 600;
  }
  .facility-box {
    padding: 30px 30px 0px;
  }
  .addition-head h2 {
    font-size: 35px;
  }
  .addition-head p {
    font-size: 18px;
  }
  .bundle-box {
    padding: 10px;
  }
  .user-avatar {
    width: 80px;
    height: 80px;
  }
  .user-avatar i {
    font-size: 40px;
  }
  .user-info h3 {
    font-size: 24px;
  }
  .user-info p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .verified {
    font-size: 18px;
  }
  .review-content h2 {
    font-size: 35px;
  }
  .review-content p {
    font-size: 20px;
  }

  .budget-banner-head h1 {
    font-size: 40px;
    font-weight: 700;
  }

  .budget-banner-head h4 {
    font-size: 22px;
  }
  .budget-banner-head p {
    font-size: 16px;
  }

  .product-card h4 {
    padding: 5px 5px;
    font-size: 18px;
    min-height: unset;
  }
  .price-box {
    padding: 5px 5px;
  }
  .sale-price {
    font-size: 22px;
  }
  .product-btns {
    padding: 5px;
    flex-wrap: wrap;
  }
  .cart-btn {
    flex: 5;
  }
  a.view-btn {
    flex: 1;
  }
  .product-btns {
    padding: 5px 5px 15px 5px;
  }

  .cart-btn {
    padding: 10px 5px;
    font-weight: 700;
    font-size: 12px;
  }
  .service-item {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 15px 20px;
  }
  .help-banner-content h4 {
    font-size: 24px;
    font-weight: 700;
  }
  .help-banner-content p {
    margin-bottom: 15px;
  }
  .cart-price-sec h3 {
    font-size: 30px;
  }
  .cart-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  .total-row h2 {
    font-size: 28px;
  }
  .faq-head-content h1 {
    font-size: 60px;
  }
  .faq-banner {
    margin-top: 10px;
  }
}

@media (max-width: 1200px) {
  .main-title {
    font-size: 95px;
  }

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

  .description p {
    font-size: 22px;
  }

  .about-content h1 {
    font-size: 68px;
  }

  .about-content p {
    font-size: 18px;
  }

  .pc-img {
    max-height: 520px;
  }

  .support-badge {
    width: 210px;
  }

  .support-badge h4 {
    font-size: 28px;
  }

  .trust-box {
    min-height: 220px;
  }

  .trust-box h4 {
    font-size: 20px;
  }

  .trust-box p {
    font-size: 15px;
  }

  .bottom-badge span {
    font-size: 22px;
  }

  .feature-text h3 {
    font-size: 27px;
  }

  .feature-text p {
    font-size: 18px;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
    min-width: 90px;
  }

  .icon-circle i {
    font-size: 38px;
  }

  .circle-bg {
    width: 470px;
    height: 470px;
  }

  .product-title {
    font-size: 19px;
    min-height: 95px;
  }

  .sale-price {
    font-size: 30px;
  }

  .old-price {
    font-size: 24px;
  }

  .about-stat-content span {
    font-size: 14px;
  }

  .about-stat-icon i {
    font-size: 48px;
  }

  .about-feature-content h4 {
    font-size: 18px;
  }

  .about-feature-content p {
    font-size: 14px;
  }

  .feature-icon i {
    font-size: 30px;
    color: #fff;
  }
  .all-facility ul li {
    flex-basis: 30%;
  }

  .service-item {
    padding: 25px 10px;
  }
  .about-stat-box {
    padding: 25px 10px;
  }
  .about-stat-content h2 {
    font-size: 30px;
  }
  .about-stat-icon {
    margin-right: 15px;
  }
  .feature-box {
    flex-wrap: wrap;
    gap: 20px;
    border-right: 0;
    border-bottom: 3px solid #d40000;
    border-radius: 0;
  }
  .feature-icon:after {
    content: unset;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  .bundle-box {
    flex-wrap: wrap;
  }
  .bundle-feat-content {
    width: 100%;
  }
  .select-model select {
    padding: 10px 7px;
  }
  .included-box .col-lg-6.text-center {
    display: none;
  }
  .included-box .col-lg-6 {
    max-width: 100%;
    flex-basis: 100%;
  }
  .spec-table td {
    padding: 10px 10px;
    font-size: 18px;
  }
  .cart-price-sec h3 {
    font-size: 25px;
    margin-left: 10px;
  }
  .feature-content p {
    line-height: 1.2;
  }
  .total-row h4 {
    font-size: 24px;
  }
  .total-row h2 {
    font-size: 24px;
  }
  .checkout-btn {
    margin-top: 20px;
    font-size: 16px;
  }
  .mobile-cart-item {
    display: block;
  }

  .bundle-icon {
    margin-bottom: 15px;
  }
  .btn-update {
    padding: 0 10px;
  }
  .coupon-info {
    flex-wrap: wrap;
  }
  .shipping-price {
    font-size: 16px;
  }
  .faq-head-content h1 {
    font-size: 45px;
  }
  .faq-head-content p strong {
    display: block;
  }
  .faq-head-content p {
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .all-facility ul li p {
    font-size: 16px;
  }
  .about-content h1 {
    font-size: 50px;
  }

  .cart-price {
    padding-left: 0px;
    margin-top: 25px;
  }
  .card-btn {
    width: 50%;
  }
  .condition-facility {
    border-right: 0px solid #9996;
    margin-bottom: 35px;
  }
  .tab-head {
    border-top: 0px solid #9996;
    border-bottom: 0px solid #9996;
    width: unset;
    margin: 0 auto 35px;
  }
  .nav.nav-tabs.tab-head button {
    border-right: 0px solid #9996;
    background-color: #f7f7f7;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .nav.nav-tabs.tab-head li:nth-of-type(1) button {
    border-left: 0px solid #9996;
  }
  .spec-card,
  .included-box {
    margin-bottom: 25px;
    height: unset;
  }
  .include-bottom-box {
    position: unset;
    margin-top: 25px;
  }
  .include-bottom-box:after {
    top: unset;
  }
  .included-list li {
    margin-bottom: 15px;
  }
  .budget-game-area {
    margin-top: 20px;
  }
  .budget-game-box {
    margin-bottom: 20px;
  }
  .cart-btn {
    padding: 10px 5px;
    font-weight: 700;
    font-size: 12px;
  }
  .faq-head-content {
    padding-bottom: 10px;
  }
  .bundle-box {
    margin-bottom: 20px;
  }
  .cart-feature .col-lg-3 {
    margin-bottom: 30px;
  }
  .faq-image {
    display: none;
  }
  .faq-divider {
    margin: 10px 0;
  }
  .shape-right {
    width: 400px;
  }
  .why-choose-sec {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .about-stat-box {
    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .border-0 {
    border-bottom: none !important;
  }

  .feature-box {
    border-right: none;

    border-bottom: 1px solid #ececec;

    min-height: auto;
  }

  .about-section {
    text-align: center;
  }

  .banner-section-tag {
    justify-content: center;
  }

  .red-divider {
    margin: 25px auto;
  }

  .about-image {
    margin-top: 40px;
  }

  .shape-black,
  .shape-red {
    display: none;
  }

  /* .support-badge{
    position:relative;
    right:auto;
    top:auto;
    margin:30px auto 0;
} */

  .trust-box {
    border-right: none;
    border-bottom: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border-radius: 10px;
  }

  .bottom-badge {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 30px auto 0;
    width: fit-content;
  }

  .bottom-badge:hover {
    transform: scale(1.02);
  }

  .pc-area {
    min-height: auto;
  }

  .feature-box {
    margin: 30px 0;
  }

  .connector {
    display: none;
  }

  .feature-box.left,
  .feature-box.right {
    padding: 0;
  }

  .circle-bg {
    width: 360px;
    height: 360px;
  }

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

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

  .description p {
    font-size: 18px;
  }

  .product-image {
    height: 240px;
  }

  .product-image img {
    max-height: 190px;
  }

  .product-title {
    min-height: auto;
  }

  .cart-header {
    display: none;
  }

  .media {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .remove-btn {
    position: absolute;
    top: 0;
    left: 0;
  }

  .product-img {
    margin-bottom: 20px;
  }

  .product-title {
    font-size: 22px;
  }

  .price,
  .subtotal {
    margin-top: 20px;
    font-size: 30px;
  }

  .qty-box {
    margin: 20px auto;
  }

  .coupon-info {
    margin-bottom: 20px;
  }

  .btn-update {
    width: 100%;
    margin-top: 20px;
  }

  .gaming-category .row {
    row-gap: 25px;
  }
  .card-content p br {
    display: none;
  }
  .card-content span {
    display: inline-block;
  }
  .choose-feature-box.right {
    padding-left: 0;
  }
  .trust-wrapper {
    box-shadow: none;
    padding: 0px 0 30px;
  }
  .col-lg-1.d-lg-flex.review-line {
    display: none;
  }
  .review-user {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .new-banner-content h2 {
    font-size: 30px;
  }
  .new-banner-content p {
    font-size: 18px;
  }
  .new-banner-content button {
    font-size: 20px;
    padding: 7px 15px;
  }

  .all-facility ul li {
    flex-basis: 50%;
  }
  .choose-head h4 {
    font-size: 30px;
  }
  .choose-head h2 {
    font-size: 60px;
    font-weight: 700;
  }
  .trust-bottom-badge {
    padding: 12px 25px;
  }
  .trust-bottom-badge span {
    font-size: 20px;
  }

  .about-stat-box {
    flex-direction: column;

    text-align: center;
  }

  .about-stat-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .about-stat-content h2 {
    font-size: 34px;
  }

  .feature-box {
    padding: 30px 18px;
  }

  .feature-content h4 {
    font-size: 17px;
  }

  .feature-content p {
    font-size: 14px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 28px;
  }

  .about-content h1 {
    font-size: 48px;
  }

  .text-black,
  .text-red {
    font-size: 18px;
  }

  .about-content p {
    font-size: 16px;
  }

  .support-badge h4 {
    font-size: 24px;
  }

  .badge-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .feature-box {
    flex-direction: column;
    text-align: center;
  }

  .feature-text {
    padding: 20px 0 0;
  }

  .feature-text h3 {
    font-size: 22px;
  }

  .feature-text p {
    font-size: 16px;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }

  .icon-circle i {
    font-size: 32px;
  }

  .circle-bg {
    width: 280px;
    height: 280px;
  }

  .trust-box {
    min-height: auto;
    padding: 25px 15px;
  }

  .trust-icon i {
    font-size: 46px;
  }

  .trust-box h4 {
    font-size: 18px;
  }

  .trust-box p {
    font-size: 14px;
  }

  .bottom-badge {
    width: 95%;
    padding: 15px;
    justify-content: center;
  }

  .bottom-badge span {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }

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

  .small-title {
    font-size: 28px;
  }

  .red-text {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }

  /* .title-banner{
    flex-direction:column;
} */

  .left-stripe,
  .right-stripe {
    display: none;
  }

  .choose-built-text {
    font-size: 15px;
    padding: 12px 18px;
  }

  .description p {
    font-size: 16px;
    line-height: 1.6;
  }

  .product-card {
    margin-bottom: 25px;
  }

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

  .sale-price {
    font-size: 28px;
  }

  .old-price {
    font-size: 20px;
  }

  .cart-btn {
    font-size: 14px;
  }
  .about-stats-section .trust-bottom-badge {
    margin-top: 10px;
  }
  .condition .row {
    padding-left: 15px;
  }
  .condition-facility {
    align-items: center;
  }
  .condition-facility h2 {
    font-size: 40px;
    font-weight: 700;
  }
  .condition-facility h2 span {
    color: #d40000;
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
  }
  .all-specification {
    padding: 10px;
  }
  .condition-facility i {
    font-size: 30px;
    width: 50px;
  }
  .bundle-title {
    font-size: 42px;
    font-weight: 700;
  }
  .best-value {
    font-size: 15px;
    font-weight: 600;
    padding: 6px 12px;
  }
  .bundle-content h3 {
    font-size: 20px;
  }
  .bundle-box {
    margin-bottom: 20px;
  }
  .review-card {
    padding: 20px;
  }
  .user-avatar {
    width: 60px;
    height: 60px;
  }
  .user-avatar i {
    font-size: 30px;
  }
  .user-info h3 {
    font-size: 22px;
  }
  .user-info p {
    font-size: 16px;
  }
  .verified {
    padding: 7px 12px;
    font-size: 16px;
  }
  .review-content h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .review-content p {
    font-size: 18px;
  }
  .heading-line.left-line,
  .heading-line.right-line {
    display: none;
  }
  .icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .icon-circle i {
    font-size: 30px;
  }
  .title-box h2 {
    font-size: 32px;
  }
  .delivery-content h4 {
    font-size: 20px;
  }
  .delivery-content p {
    font-size: 18px;
  }
  .feature-item {
    padding: 10px 25px;
  }
  .cart-details {
    padding-left: 20px;
  }
  .mobile-cart-price {
    padding-left: 20px;
  }
  .coupon-area {
    padding: 30px 20px;
  }
  .cart-total-card {
    margin-top: 20px;
  }
  .faq-card .card-header button {
    padding-top: 10px;
  }
  .faq-card .card-header button::after {
    top: 10px;
  }
  .faq-img {
    width: 80px;
  }
  .faq-content {
    width: calc(100% - 80px);
    padding-right: 40px;
  }
  .shape-right {
    display: none;
  }
  .faq-head-content h1 {
    font-size: 40px;
  }
  .product-head h2 {
    font-size: 25px;
  }
  section.all-product {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .about-stats-wrapper {
    border-radius: 12px;
  }

  .about-stat-box {
    padding: 25px 15px;
  }

  .about-stat-content h2 {
    font-size: 30px;
  }

  .about-stat-content span {
    font-size: 13px;
  }

  .about-feature-wrapper {
    border-radius: 12px;
  }

  .feature-box {
    padding: 25px 15px;
  }

  .feature-content h4 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;

    line-height: 1.7;
  }

  .feature-icon {
    width: 65px;
    height: 65px;

    margin-bottom: 18px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .trust-box {
    border-bottom: 1px solid #eee;
  }

  .bottom-badge i {
    display: none;
  }

  .bottom-badge span {
    font-size: 16px;
  }

  .product-image {
    height: 220px;
  }

  .product-image img {
    max-height: 170px;
  }

  .spec-item {
    padding: 10px 3px;
  }

  .spec-item span {
    font-size: 10px;
  }

  .sale-price {
    display: block;
    margin-bottom: 5px;
  }

  .old-price {
    display: block;
  }

  .product-title {
    font-size: 20px;
  }

  .bundle-list li {
    font-size: 16px;
  }

  .specs {
    gap: 12px;
  }

  .specs span {
    font-size: 13px;
  }

  .price,
  .subtotal {
    font-size: 26px;
  }

  .input-group .form-control {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .input-group .btn {
    width: 100%;
    border-radius: 4px;
  }
  .trust-bottom-badge strong {
    display: block;
  }
  a.carousel-control-prev,
  a.carousel-control-next {
    display: none;
  }
  .new-banner-content {
    margin-top: 15px;
    margin-left: 15px;
    padding: 0 10px;
  }
  .new-banner-content h2 {
    font-size: 22px;
  }
  .new-banner-content p {
    font-size: 16px;
  }
  ul.carousel-indicators {
    display: none;
  }
  .all-facility ul li {
    flex-basis: 100%;
  }
  .common-specification {
    gap: 20px;
  }
  .parts-details p {
    font-size: 16px;
  }
  .parts-image i {
    font-size: 30px;
  }
  .common-access.common-access-power {
    gap: 20px;
  }
  .condition-facility h2 {
    font-size: 35px;
    font-weight: 600;
  }
  .condition-facility {
    margin-bottom: 25px;
  }
  .nav.nav-tabs.tab-head button {
    width: 280px;
  }
  .include-bottom-box:after {
    content: unset;
  }
  .condition-facility h2 span {
    font-size: 35px;
  }
  .spec-table i {
    display: block;
  }
  .banner-wrapper {
    padding: 20px 15px;
  }
  .budget-banner-head h1 {
    font-size: 30px;
  }
  .budget-banner-head h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.all-budget-product {
    margin-top: 60px;
  }
  .price-bottom span {
    font-size: 18px;
  }
  .btn-filter {
    padding: 8px 20px;
  }
  .service-item {
    padding: 15px 10px;
  }
  .cart-head h1 {
    font-size: 30px;
  }
  .bundle-icon {
    margin: 0 0 10px;
  }
  .cart-price-sec h3 {
    font-size: 20px;
  }
  .price-row span,
  .price-row strong {
    font-size: 18px;
  }
  .shipping-box h5 {
    font-size: 20px;
  }
  .custom-control-label,
  .shipping-price {
    font-size: 16px;
  }
  .shipping-note {
    line-height: 1.5;
  }
  .total-row h4 {
    font-size: 20px;
  }
  .total-row h2 {
    font-size: 22px;
  }
  .checkout-btn {
    font-size: 16px;
  }
  .feature-item {
    padding: 10px 15px;
  }
  .mobile-cart-item h2 {
    font-size: 24px;
    line-height: 1.4;
  }
  .mobile-cart-item h3.subtotal {
    padding-left: 20px;
  }
  .faq-head-content h1 {
    font-size: 40px;
  }
  .faq-small-title {
    font-size: 20px;
  }
  .faq-banner .left-dots,
  .faq-banner .dots-right {
    display: none;
  }
  .faq-banner {
    margin-top: 50px;
  }
  .faq-head-content h1 {
    font-size: 35px;
    line-height: 1.2;
  }
  .faq-head-content p {
    font-size: 18px;
  }
  .choose-head h2 {
    font-size: 40px;
  }
  .service-icon {
    width: 50px;
    min-width: 50px;
    font-size: 32px;
    margin-right: 10px;
  }
  .service-text h5 {
    font-size: 17px;
  }
  .service-item {
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 50px 0;
  }

  .about-content h1 {
    font-size: 40px;
  }

  .about-content p {
    line-height: 1.7;
  }

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

  .small-title {
    font-size: 24px;
  }

  .choose-built-text {
    font-size: 13px;
  }
}
.blog-banner {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.blog-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(
      135deg,
      transparent 49.8%,
      rgba(0, 0, 0, 0.035) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      45deg,
      transparent 49.8%,
      rgba(0, 0, 0, 0.025) 50%,
      transparent 50.2%
    );
  background-size: 520px 520px;
  pointer-events: none;
}

.blog-banner .dots {
  position: absolute;
  top: 45px;
  left: 52%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#e00000 1.8px, transparent 1.8px);
  background-size: 12px 12px;
  opacity: 0.35;
}

.blog-banner .line-one {
  position: absolute;
  top: 40px;
  left: 42%;
  width: 170px;
  height: 2px;
  background: #ffb3b3;
  transform: rotate(-32deg);
}

.blog-banner .line-two {
  position: absolute;
  top: 95px;
  left: 45%;
  width: 220px;
  height: 2px;
  background: #ffd0d0;
  transform: rotate(-32deg);
}

.blog-banner-content {
  position: relative;
  z-index: 5;
}

.blog-sub-head {
  color: var(--main-brand-color);
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.blog-banner-content h1 {
  font-size: 82px;
  line-height: 1.1;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 15px;
  font-weight: 700;
}

.blog-banner-content h1 span {
  color: var(--main-brand-color);
}

.blog-banner .row {
  align-items: center;
}

.blog-banner-content p {
  color: #555;
  font-size: 25px;
  line-height: 1.5;
  max-width: 600px;
}

.blog-banner-image {
  text-align: center;
  position: relative;
  z-index: 5;
}

.blog-banner-image img {
  max-width: 100%;
  transition: 0.4s;
}

.blog-banner-image img:hover {
  transform: scale(1.03);
}

.feat-article-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feat-article-head .title-icon {
  color: var(--main-brand-color);
  font-size: 22px;
  margin-right: 12px;
}

.feat-article-head h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--main-brand-color);
  text-transform: uppercase;
}

.featured-card {
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.35s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.article-image {
  position: relative;

  overflow: hidden;

  height: 100%;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  max-height: 500px;
}

.featured-card:hover .article-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;

  top: 20px;

  left: 20px;

  background: var(--main-brand-color);

  color: #fff;

  padding: 10px 18px;

  font-size: 14px;

  font-weight: 700;

  border-radius: 6px;

  z-index: 5;

  text-transform: uppercase;
}

.article-content {
  padding: 25px;
}

.article-content h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.article-content p {
  color: #666;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;

  flex-wrap: wrap;

  margin-bottom: 30px;
}

.article-meta span {
  margin-right: 30px;
  color: #777;
  font-size: 16px;
}

.article-meta i {
  margin-right: 8px;

  color: #999;
}

/*==============================
      BUTTON
==============================*/

.read-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #111;

  color: #fff;

  padding: 15px 24px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  transition: 0.3s;

  text-transform: uppercase;
}

.read-btn:hover {
  background: var(--main-brand-color);

  color: #fff;

  text-decoration: none;
}

.read-btn i {
  margin-left: 12px;
}

.latest-blog-section {
  padding: 70px 0;
}

/*=========================
      SECTION HEADING
==========================*/

.all-blog-head {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.all-blog-head i {
  color: #e10600;
  font-size: 22px;
  margin-right: 12px;
}

.all-blog-head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*=========================
        BLOG CARD
==========================*/

.blog-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.35s;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/*=========================
        IMAGE
==========================*/

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.45s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

/*=========================
       DATE BOX
==========================*/

.date-box {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-weight: 700;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.date-box .day {
  font-size: 20px;
  color: #111;
  line-height: 1;
}

.date-box .month {
  font-size: 13px;
  color: #555;
  margin-top: 3px;
  letter-spacing: 1px;
}

.blog-content {
  padding: 15px;
}

.category {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--main-brand-color);
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: 0.3s;
}

.blog-card:hover h3 {
  color: #e10600;
}

.blog-meta {
  display: flex;
  align-items: center;
  color: #777;
  font-size: 16px;
  font-weight: 500;
}

.blog-meta i {
  margin-right: 8px;
  color: #888;
}

.custom-pagination .pagination {
  gap: 12px;
}

.custom-pagination .page-item .page-link {
  width: 44px;
  height: 44px;

  border-radius: 8px;

  border: 1px solid #ececec;

  background: #fff;

  color: #333;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 600;

  padding: 0;

  transition: 0.3s;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-pagination .page-item .page-link:hover {
  background: var(--main-brand-color);
  color: #fff;
  border-color: var(--main-brand-color);
}

.custom-pagination .page-item.active .page-link {
  background: var(--main-brand-color);
  border-color: var(--main-brand-color);
  color: #fff;

  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.25);
}

.custom-pagination .page-item.disabled .page-link {
  color: #999;
  background: #fff;
  border-color: #ececec;
  cursor: default;
}

.custom-pagination .page-item:first-child .page-link,
.custom-pagination .page-item:last-child .page-link {
  font-size: 15px;
}

.custom-pagination .page-item:first-child .page-link:hover,
.custom-pagination .page-item:last-child .page-link:hover {
  background: #222;
  border-color: #222;
}

.sidebar-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.search-form {
  display: flex;

  overflow: hidden;

  border: 1px solid #ececec;

  border-radius: 10px;
}

.search-form input {
  flex: 1;

  border: none;

  padding: 15px 18px;

  font-size: 16px;

  outline: none;
}

.search-form button {
  width: 60px;

  background: #e30613;

  color: #fff;

  border: none;

  transition: 0.3s;
}

.search-form button:hover {
  background: #111;
}

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

.category-list li {
  margin-bottom: 14px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #444;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.category-list li a:hover {
  color: #e30613;
}

.count {
  width: 42px;
  height: 38px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: #666;
  transition: 0.3s;
}

.category-list li:hover .count {
  background: #e30613;
  color: #fff;
  border-color: #e30613;
}

.sidebar-section {
  padding: 60px 0;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.sidebar-title i {
  color: #e30613;
}

.popular-post {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.post-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #e30613;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s;
}

.post-image {
  width: 110px;
  height: 80px;
  overflow: hidden;
  border-radius: 5px;
  margin-right: 18px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.popular-post:hover img {
  transform: scale(1.08);
}

.popular-post:hover .post-number {
  background: #111;
}

.post-content {
  flex: 1;
}

.post-content h5 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  transition: 0.3s;
}

.popular-post:hover h5 {
  color: #e30613;
}

.post-content span {
  color: #777;
  font-size: 16px;
}

.newsletter-text {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.form-control {
  height: 54px;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  font-size: 16px;
  box-shadow: none;
}

.form-control:focus {
  border-color: #e30613;
  box-shadow: none;
}

.subscribe-btn {
  width: 100%;
  border: none;
  border-radius: 5px;
  background: var(--main-brand-color);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  text-transform: uppercase;
  margin-top: 15px;
  padding: 13px 10px;
}

.subscribe-btn:hover {
  background: #111;
}

/* COntact US */

.contact-banner {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 70px 0 30px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      transparent 49.8%,
      rgba(0, 0, 0, 0.03) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      45deg,
      transparent 49.8%,
      rgba(0, 0, 0, 0.025) 50%,
      transparent 50.2%
    );
  background-size: 480px 480px;
  pointer-events: none;
}

.shape-left {
  position: absolute;
  width: 170px;
  height: 170px;
  left: -25px;
  top: 15px;
}

.shape-left::before,
.shape-left::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background: #ffb5b5;
  transform: rotate(-45deg);
}

.shape-left::before {
  top: 20px;
  left: 0;
}

.shape-left::after {
  top: 45px;
  left: 25px;
}

.shape-right {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -20px;
  top: 10px;
}

.shape-right::before,
.shape-right::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background: #ffb5b5;
  transform: rotate(45deg);
}

.shape-right::before {
  top: 18px;
  right: 0;
}

.shape-right::after {
  top: 43px;
  right: 25px;
}

.dots {
  position: absolute;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#df0000 1.3px, transparent 1.3px);
  background-size: 10px 10px;
  opacity: 0.35;
}

.dots-left {
  left: 0;
  top: 5px;
}

.dots-right {
  right: 0;
  top: 0;
}

.contact-content {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-bottom: 60px;
}

.heading-decoration {
  margin-bottom: 15px;
}

.heading-decoration span {
  display: inline-block;

  width: 80px;
  height: 5px;

  background: #e30613;

  border-radius: 50px;

  position: relative;
}

.contact-content h1 {
  margin: 0;
  font-size: 82px;
  font-weight: 800;
  line-height: 1;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: italic;
}

.contact-content h1 span {
  color: #e30613;
}

.contact-content p {
  margin-top: 15px;

  color: #666;

  font-size: 28px;

  font-weight: 400;
}

.contact-info {
  padding: 80px 0;
}

.contact-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 75px 35px 50px;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/*=================================
        PINK SHAPE
=================================*/

.contact-card:before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  left: -120px;
  bottom: -140px;

  background: rgba(227, 6, 19, 0.05);

  border-radius: 50%;
}

/*=================================
        TOP ICON
=================================*/

.card-icon {
  position: absolute;

  top: -28px;
  left: 50%;

  transform: translateX(-50%);

  width: 92px;
  height: 92px;

  border-radius: 50%;

  background: #e30613;

  color: #fff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 38px;

  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.35);

  border: 6px solid #fff;
}

.card-icon:before {
  content: "";

  position: absolute;

  width: 108px;
  height: 108px;

  border: 3px dotted #e30613;

  border-radius: 50%;

  opacity: 0.45;
}

/*=================================
        TITLE
=================================*/

.contact-card h3 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin: 8px 0;
}

.title-line {
  display: block;

  width: 55px;
  height: 4px;

  margin: 0 auto 35px;

  background: #e30613;

  border-radius: 30px;
}

.phone-item {
  display: flex;

  align-items: center;

  margin-bottom: 20px;
}

.phone-icon {
  width: 48px;
  height: 48px;

  border-radius: 10px;

  background: #ffecec;

  color: #e30613;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 20px;

  margin-right: 18px;
}

.phone-item p {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}

.email-box {
  display: flex;

  align-items: center;
  justify-content: center;

  background: #fff;

  border: 1px solid #ececec;

  border-radius: 40px;

  padding: 18px 20px;

  font-size: 20px;

  font-weight: 600;

  color: #222;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.email-box i {
  color: #e30613;

  font-size: 24px;

  margin-right: 12px;
}

.reply-text {
  margin-top: 28px;

  font-size: 18px;

  color: #666;
}

.address-box {
  display: flex;

  align-items: flex-start;

  text-align: left;
}

.address-box i {
  color: #e30613;

  font-size: 26px;

  margin-right: 18px;

  margin-top: 6px;
}

.address-box p {
  font-size: 20px;

  line-height: 2;
  margin-bottom: 0;
  color: #222;
}

.support-banner {
  padding: 20px 0 40px;
}

.support-wrapper {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 0 55px 45px 55px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

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

.support-icon {
  width: 140px;
  height: 140px;
  min-width: 140px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 35px;
  box-shadow: inset 0 0 0 12px #fafafa;
}

.support-icon i {
  font-size: 72px;
  color: #e30613;
}

.support-text .sub-title {
  display: block;
  color: #e30613;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.support-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: rgb(17, 17, 17);
  margin-bottom: 18px;
  text-transform: uppercase;
  line-height: 1.1;
}

.support-text p {
  font-size: 22px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}

.support-image {
  text-align: right;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.support-image img {
  max-width: 100%;

  height: auto;
}

.support-image::before {
  content: "";

  position: absolute;

  width: 220px;

  height: 35px;

  background: #ff3d3d;

  filter: blur(28px);

  bottom: 18px;

  left: 50%;

  transform: translateX(-50%);

  opacity: 0.45;

  z-index: -1;
}

.dot-pattern {
  position: absolute;

  right: 25px;

  top: 50%;

  transform: translateY(-50%);

  width: 110px;

  height: 180px;

  background-image: radial-gradient(#ff4040 1.6px, transparent 1.6px);

  background-size: 12px 12px;

  opacity: 0.35;

  z-index: 1;
}

.support-wrapper {
  transition: 0.35s;
}

.support-wrapper:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.support-wrapper:hover .support-icon {
  transform: rotate(-8deg);
}

.support-icon {
  transition: 0.35s;
}

/* Login */

.login-sec {
  background: #fff;

  padding: 35px 0 25px;

  position: relative;

  overflow: hidden;

  border-top: 1px solid #efefef;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Thin top highlight */

.login-banner::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(227, 6, 19, 0.25),
    transparent
  );
}

.login-content {
  text-align: center;
  margin-bottom: 30px;
}

.login-content h1 {
  margin: 0;
  font-size: 72px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  letter-spacing: -1px;
}

.login-content h1 span {
  display: inline-block;
  margin-left: 10px;
  color: #e30613;
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(180deg, #ff4242, #c40000);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  text-shadow: 0 2px 10px rgba(227, 6, 19, 0.08);
}

.login-content p {
  margin: 12px 0 0;
  font-size: 24px;
  color: #555;
  font-weight: 400;
  line-height: 1.6;
}

.login-section {
  padding: 80px 0;
}

.login-card {
  position: relative;
  background: #fff;
  border: 2px solid #ffd4d8;
  border-radius: 28px;
  padding: 55px 35px 40px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.login-card:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.05);
}

.login-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 70px;
  background: linear-gradient(135deg, #ff3550, #d70014);
  border-radius: 26px 0 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.35);
}

.login-card h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 0;
}

.login-subtitle {
  text-align: center;

  color: #666;

  font-size: 22px;

  margin-top: 5px;
}

.title-line {
  display: block;

  width: 45px;
  height: 3px;

  background: #e30613;

  border-radius: 50px;

  margin: 18px auto 35px;
}

/*==================================
        LABEL
==================================*/

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-size: 18px;

  font-weight: 600;

  color: #222;

  margin-bottom: 10px;
}

.form-group label span {
  color: #e30613;
}

/*==================================
        INPUT
==================================*/

.input-box {
  position: relative;
}

.input-box i:first-child {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 20px;
}

.form-control {
  height: 60px;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding-left: 60px;
  padding-right: 20px;
  font-size: 17px;
  box-shadow: none;
}

.form-control:focus {
  border-color: #e30613;
  box-shadow: none;
}
.register-card input.form-control {
  padding-left: 20px;
}

.password-toggle {
  position: absolute;

  right: 18px;
  top: 50%;

  transform: translateY(-50%);

  background: none;

  border: none;

  color: #666;

  font-size: 20px;

  outline: none;

  cursor: pointer;
}

.login-options {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;
}

.custom-control-label {
  font-size: 17px;
  padding-left: 5px;
}
.login-options .custom-control.custom-checkbox {
  margin-bottom: 0;
}

.forgot-link {
  color: #111;

  font-weight: 600;

  text-decoration: underline;
}

.forgot-link:hover {
  color: #e30613;
}

.login-btn {
  width: 100%;

  height: 62px;

  border: none;

  border-radius: 40px;

  background: linear-gradient(180deg, #ff1735, #d80012);

  color: #fff;

  font-size: 22px;

  font-weight: 700;

  letter-spacing: 0.5px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  box-shadow: 0 10px 25px rgba(227, 6, 19, 0.35);

  transition: 0.35s;
}

.login-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(227, 6, 19, 0.45);
}

.login-btn i {
  font-size: 22px;
}

.middle-highlight {
  text-align: center;
}

.middle-title {
  margin-bottom: 25px;
  line-height: 1.1;
}

.middle-title span {
  display: block;

  font-size: 48px;

  font-family: cursive;

  color: #222;
}

.middle-title strong {
  display: block;
  font-size: 54px;
  color: #e30613;
  font-style: italic;
  font-weight: 700;
}

.middle-content img {
  width: 100%;
}

.register-card {
  position: relative;

  background: #fff;

  border: 2px solid #ffd4dc;

  border-radius: 28px;

  padding: 35px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.register-ribbon {
  position: absolute;

  top: 0;

  right: 0;

  width: 110px;

  height: 70px;

  background: linear-gradient(135deg, #ff3052, #d60018);

  border-radius: 0 25px 0 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 32px;

  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.25);
}

.register-ribbon:before {
  content: "";

  position: absolute;

  left: -38px;

  top: 0;

  width: 40px;

  height: 40px;

  background: #fff;

  border-radius: 0 0 40px 0;
}
.Register-head {
  text-align: center;
}

.Register-head h2 {
  font-size: 52px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.Register-head p {
  color: #666;

  font-size: 22px;

  margin-bottom: 15px;
}

.register-divider {
  display: block;

  width: 35px;

  height: 3px;

  background: #ececec;

  margin: 0 auto 35px;

  border-radius: 30px;
}

.register-card label {
  font-size: 18px;

  font-weight: 600;

  color: #222;

  margin-bottom: 12px;
}

.register-input {
  margin-bottom: 20px;
}

.register-input .input-group-text {
  background: #fff;
  border: 2px solid #dddddd;
  border-right: 0;
  border-radius: 16px 0 0 16px;
  padding: 0 18px;
  color: #555;
  font-size: 20px;
  height: 100%;
}

.register-input .form-control {
  height: 58px;

  border: 2px solid #dddddd;

  border-left: 0;

  border-radius: 0 16px 16px 0;

  box-shadow: none;

  font-size: 17px;
}

.register-input .form-control:focus {
  border-color: #e30613;

  box-shadow: none;
}

.register-notice {
  display: flex;
  align-items: flex-start;
  padding: 5px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.notice-blue {
  background: #edf6ff;

  border: 1px solid #cfe5ff;
}

.notice-gray {
  background: #f3f3f8;
}

.notice-icon {
  width: 42px;

  min-width: 42px;

  font-size: 28px;

  margin-right: 15px;
}

.notice-blue .notice-icon {
  color: #1d73d8;
}

.notice-gray .notice-icon {
  color: #555;
}

.notice-text {
  font-size: 15px;

  line-height: 1.7;

  color: #444;
}

.notice-text a {
  color: #222;

  font-weight: 600;

  text-decoration: underline;
}

.notice-text a:hover {
  color: #e30613;
}

.register-btn {
  width: 100%;
  height: 62px;
  margin-top: 20px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(to bottom, #ff1735, #cf0017);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.3);
  transition: 0.35s;
}

.register-btn:hover {
  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(255, 0, 0, 0.4);
}

/*==================================
      RESPONSIVE
==================================*/

@media screen and (max-width: 1650px) {
  .blog-banner-content h1 {
    font-size: 70px;
  }
  .blog-banner-content p {
    font-size: 22px;
  }
  .post-image {
    width: 70px;
    height: 60px;
  }
}

@media screen and (max-width: 1450px) {
  .contact-content h1 {
    font-size: 70px;
  }
  .contact-content p {
    font-size: 24px;
  }
  .shape-right {
    top: 50px;
    width: 400px;
  }
  .contact-card h3 {
    font-size: 32px;
  }
  .service-text {
    flex-basis: 100%;
  }
  .blog-banner-content h1 {
    font-size: 60px;
  }
  .popular-post {
    flex-wrap: wrap;
  }
  .post-content {
    margin-top: 15px;
  }
  .newsletter-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .login-content h1 {
    font-size: 60px;
  }
  .login-content p {
    font-size: 20px;
  }
  .login-card h2,
  .Register-head h2 {
    font-size: 38px;
  }
  .login-ribbon {
    width: 110px;
    height: 60px;
  }
  .login-card {
    padding: 55px 35px 40px;
  }
  .register-ribbon {
    width: 90px;
    height: 50px;
  }
  .register-ribbon i {
    font-size: 24px;
  }
  .form-control {
    padding-left: 50px;
  }
  .register-card input.form-control {
    padding-left: 0px;
  }
  .notice-icon {
    margin-right: 0px;
  }
  .register-card {
    padding: 35px 20px;
  }
}

@media screen and (min-width: 1201px) {
  .cart-item {
    display: block;
  }
}
@media (max-width: 1200px) {
  .contact-content h1 {
    font-size: 70px;
  }

  .contact-content p {
    font-size: 22px;
  }
  .banner-content h1 {
    font-size: 75px;
  }

  .banner-content p {
    font-size: 20px;
  }
  .article-content h2 {
    font-size: 28px;
  }

  .article-content p {
    font-size: 16px;
  }
  .post-content h5 {
    font-size: 18px;
  }
  .support-text h2 {
    font-size: 38px;
  }

  .support-text p {
    font-size: 18px;
  }

  .support-icon {
    width: 120px;
    height: 120px;
    min-width: 120px;
  }

  .support-icon i {
    font-size: 60px;
  }
  .contact-card h3 {
    font-size: 28px;
  }

  .phone-item p {
    font-size: 17px;
  }

  .email-box,
  .reply-text,
  .address-box div,
  .address-box p {
    font-size: 17px;
  }

  .contact-card {
    padding: 75px 15px 50px;
  }
  .support-wrapper {
    padding: 25px 25px;
  }

  .banner-content h1 {
    font-size: 60px;
  }

  .banner-content p {
    font-size: 22px;
  }
  .login-card {
    padding: 55px 35px 40px 25px;
  }
  .form-control {
    font-size: 15px;
  }
  .custom-control-label {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .support-wrapper {
    padding: 40px 30px;
  }

  .support-content {
    flex-direction: column;

    text-align: center;
  }

  .support-icon {
    margin: 0 auto 30px;
  }

  .support-image {
    text-align: center;

    margin-top: 40px;
  }

  .dot-pattern {
    display: none;
  }
  .contact-card {
    min-height: auto;
    height: unset;
    margin-bottom: 30px;
  }
  .contact-banner {
    padding: 55px 0;
  }

  .contact-content h1 {
    font-size: 58px;
  }

  .contact-content p {
    font-size: 18px;
  }

  .shape-left,
  .shape-right {
    display: none;
  }
  .sidebar-card {
    margin-bottom: 30px;
  }

  .post-image {
    width: 95px;

    height: 70px;
  }

  .post-content h5 {
    font-size: 17px;
  }
  .sidebar-box {
    margin-bottom: 30px;
  }
  .article-content {
    padding: 30px;
  }

  .article-content h2 {
    font-size: 30px;
  }

  .article-content p {
    font-size: 17px;
  }

  .article-image {
    height: 350px;
  }
  .latest-blog-section {
    padding: 50px 0;
  }

  .blog-image img {
    height: 200px;
  }
  .blog-banner {
    text-align: center;
  }

  .banner-content {
    margin-bottom: 40px;
  }

  .banner-content p {
    max-width: 100%;
  }

  .banner-image {
    text-align: center;
  }

  .banner-content h1 {
    font-size: 62px;
  }

  .line-one,
  .line-two,
  .hexagon-bg {
    display: none;
  }

  .register-card {
    padding: 30px;
  }

  .register-title {
    font-size: 42px;
  }
  .login-card {
    padding: 50px 30px 30px;
  }
  .login-banner {
    padding: 28px 0;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-content p {
    font-size: 19px;
  }

  .login-card {
    margin-bottom: 40px;
  }
  .middle-highlight {
    margin-bottom: 50px;
  }
  .login-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .contact-banner {
    padding: 45px 0 10px;
  }

  .contact-content h1 {
    font-size: 42px;
  }

  .contact-content p {
    font-size: 16px;
  }

  .heading-decoration span {
    width: 60px;
  }
  .support-text h2 {
    font-size: 30px;
  }

  .support-text p {
    font-size: 16px;
  }

  .support-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }

  .support-icon i {
    font-size: 48px;
  }

  .support-wrapper {
    border-radius: 15px;

    padding: 30px 20px;
  }
  .contact-card {
    padding: 70px 25px 30px;
    margin-bottom: 60px;
  }

  .card-icon {
    width: 80px;
    height: 80px;

    font-size: 30px;
  }

  .card-icon:before {
    width: 94px;
    height: 94px;
  }

  .contact-card h3 {
    font-size: 30px;
  }

  .phone-item p {
    font-size: 18px;
  }

  .email-box {
    font-size: 16px;

    padding: 14px 18px;
  }

  .address-box div {
    font-size: 16px;

    line-height: 1.8;
  }

  .reply-text {
    font-size: 16px;
  }
  .sidebar-card {
    padding: 20px;
  }

  .sidebar-title {
    font-size: 22px;
  }
  .contact-banner span.dots.dots-right {
    width: 60px;
    height: 60px;
  }

  .post-number {
    width: 36px;

    height: 36px;

    min-width: 36px;

    font-size: 12px;
  }

  .post-image {
    width: 85px;

    height: 65px;
  }

  .post-content h5 {
    font-size: 16px;
  }

  .post-content span {
    font-size: 14px;
  }

  .newsletter-text {
    font-size: 15px;
  }

  .subscribe-btn {
    height: 50px;

    font-size: 16px;
  }
  .sidebar-box {
    padding: 20px;
  }

  .sidebar-title {
    font-size: 24px;
  }

  .category-list li a {
    font-size: 16px;
  }

  .search-form input {
    padding: 12px 15px;
  }
  .all-blog-head h2 {
    font-size: 24px;
  }

  .blog-image img {
    height: 190px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .blog-meta {
    font-size: 16px;
  }
  .feat-article-head h3 {
    font-size: 24px;
  }

  .article-image {
    height: 260px;
  }

  .article-content {
    padding: 25px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content p {
    font-size: 15px;
  }

  .article-meta {
    flex-direction: column;
  }

  .article-meta span {
    margin-bottom: 10px;
  }

  .read-btn {
    width: 100%;

    justify-content: center;
  }
  .blog-banner {
    padding: 40px 0;
  }

  .banner-content h1 {
    font-size: 46px;
  }

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

  .banner-content p {
    font-size: 16px;
  }

  .blog-btn {
    padding: 12px 25px;
  }

  .dots {
    width: 60px;
    height: 60px;
  }
  .blog-banner-content h1 {
    font-size: 50px;
  }
  .custom-pagination .pagination {
    gap: 10px;
  }
  .custom-pagination .page-item .page-link {
    width: 34px;
    height: 34px;
  }
  section.contact.service-area .service-item {
    text-align: center;
    justify-content: center;
  }

  .register-card {
    padding: 25px;

    border-radius: 20px;
  }

  .register-title {
    font-size: 34px;
  }

  .register-subtitle {
    font-size: 18px;
  }

  .register-card label {
    font-size: 16px;
  }

  .register-btn {
    font-size: 18px;

    height: 56px;
  }

  .notice-text {
    font-size: 14px;
  }

  .register-ribbon {
    width: 90px;

    height: 60px;

    font-size: 26px;
  }
  .login-card {
    border-radius: 20px;
  }

  .login-ribbon {
    width: 95px;
    height: 60px;

    font-size: 24px;
  }

  .login-card h2 {
    font-size: 36px;
  }

  .login-subtitle {
    font-size: 18px;
  }

  .form-control {
    height: 54px;

    font-size: 15px;
  }

  .login-options {
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }

  .login-btn {
    height: 56px;

    font-size: 18px;
  }

  .banner-content h1 {
    font-size: 38px;

    line-height: 1.25;
  }

  .banner-content h1 span {
    display: block;

    margin-top: 8px;

    margin-left: 0;
  }

  .banner-content p {
    font-size: 16px;

    padding: 0 15px;
  }
  .login-content h1 {
    font-size: 40px;
  }
  .middle-title strong {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .latest-blog-section {
    padding: 40px 0;
  }

  .all-blog-head {
    margin-bottom: 20px;
  }

  .all-blog-head h2 {
    font-size: 22px;
  }

  .blog-image img {
    height: 180px;
  }

  .date-box {
    width: 55px;
    height: 55px;
  }

  .date-box .day {
    font-size: 22px;
  }

  .date-box .month {
    font-size: 11px;
  }

  .blog-meta {
    font-size: 15px;
  }
  .featured-card {
    border-radius: 12px;
  }

  .featured-badge {
    top: 15px;
    left: 15px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .article-image {
    height: 220px;
  }

  .article-content {
    padding: 20px;
  }

  .article-content h2 {
    font-size: 22px;
  }

  .article-content p {
    font-size: 14px;
  }
  .banner-content h1 {
    font-size: 38px;
  }

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

  .banner-content p {
    font-size: 15px;
  }
  .popular-post {
    flex-wrap: wrap;
  }

  .post-number {
    margin-bottom: 12px;
  }

  .post-image {
    width: 100%;

    height: 180px;

    margin: 0 0 15px 0;
  }

  .post-content {
    width: 100%;
  }
  .register-input .input-group-text {
    height: 55px;
  }
}
@media (max-width: 480px) {
  .sub-title {
    font-size: 14px;
  }

  .support-text h2 {
    font-size: 24px;
  }

  .support-text p {
    font-size: 15px;

    line-height: 1.7;
  }

  .support-icon {
    width: 85px;
    height: 85px;
    min-width: 85px;
  }

  .support-icon i {
    font-size: 40px;
  }
  .contact-content h1 {
    font-size: 34px;
  }

  .contact-content p {
    font-size: 14px;
  }

  .heading-decoration {
    margin-bottom: 10px;
  }
  .phone-item {
    flex-direction: column;

    text-align: center;
  }

  .phone-icon {
    margin: 0 0 12px;
  }

  .address-box {
    flex-direction: column;

    text-align: center;
  }

  .address-box i {
    margin: 0 auto 15px;
  }

  .email-box {
    flex-direction: column;
  }

  .email-box i {
    margin: 0 0 10px;
  }

  .register-title {
    font-size: 28px;
  }

  .register-subtitle {
    font-size: 16px;
  }

  .register-btn {
    font-size: 16px;
  }

  .register-input .form-control {
    font-size: 15px;
  }
  .login-section {
    padding: 40px 0;
  }

  .login-card h2 {
    font-size: 30px;
  }

  .login-subtitle {
    font-size: 16px;
  }

  .form-group label {
    font-size: 15px;
  }

  .login-btn {
    font-size: 16px;
  }
  .login-banner {
    padding: 22px 0;
  }

  .banner-content h1 {
    font-size: 30px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
