/* Fonts loaded via app.blade.php - removed duplicate import that caused CLS */
:root {
  --primary-color: #ae2012;
  --secondary-color: #0a9396;
  --third-color: #333;
  --fourth-color: #fff;
  --fifth-color: #ae2012;
  --font-size: 15px;
}
body {
  font-family: inter, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3d3d3d;
  overflow-x: hidden;
  font-size: var(--font-size);
  line-height: 1.7;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}
.btn:focus,
.slick-initialized .slick-slide:focus,
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
button,
input,
select,
textarea {
  border: none;
}
input,
select,
textarea {
  width: 100%;
  background-color: transparent;
  padding: 0 20px;
  height: 45px;
  font-weight: 600;
  font-size: 13px;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
textarea {
  height: 200px;
  padding-top: 20px;
  resize: none;
}
input[type="checkbox"],
input[type="radio"] {
  height: auto;
  width: auto;
}
::-webkit-input-placeholder {
  opacity: 1;
  color: #555;
}
::-moz-placeholder {
  opacity: 1;
  color: #555;
}
:-ms-input-placeholder,
::-ms-input-placeholder {
  opacity: 1;
  color: #555;
}
::placeholder {
  opacity: 1;
  color: #555;
}
::-webkit-scrollbar {
  background-color: #ccc;
  width: 8px;
}
::-webkit-scrollbar:horizontal {
  background-color: #ccc;
  height: 4px;
}
::-webkit-scrollbar-thumb {
  background-color: #3d3d3d;
}
.slick-slide img {
  display: inline-block;
}
a:focus,
a:hover {
  text-decoration: none;
}
a,
i,
span {
  display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, serif;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000;
}
h1 {
  font-size: 52px;
  font-weight: 700;
}
h1 span {
  color: #be0104;
}
h2 {
  font-size: 42px;
}
h3 {
  font-size: 32px;
}
h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  color: #000;
}
ol,
ul {
  padding: 0;
  list-style-type: none;
}
ol,
p,
ul {
  margin: 0;
  font-family: Poppins, serif;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000;
}
a {
  transition: all 0.3s ease-out 0.3s;
}
a,
a:hover {
  color: #000;
}
@keyframes a {
  0% {
    transform: scale(0.75);
  }
  50% {
    transform: scale(1);
  }
  to {
    transform: scale(0.75);
  }
}
.primaryColor {
  color: var(--primary-color);
}
.theme-header {

  color: var(--fourth-color);
  border-radius: 12px;
  padding: 20px;
}
.theme-section {
  background-color: #f7fbfc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}
.theme-card {
  background-color: var(--fourth-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.contactPageForm.theme-card {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.theme-card .section-title,
.theme-card h4,
.theme-card h5 {
  color: var(--primary-color);
}
.theme-btn {
  background-color: var(--primary-color);
  color: var(--fourth-color);
  border-radius: 8px;
  padding: 10px 16px;
  transition: background-color 0.2s ease;
}
.theme-btn:hover {
  background-color: var(--secondary-color);
  color: var(--fourth-color);
}
.text-brand-primary {
  color: var(--primary-color);
}
.text-brand-secondary {
  color: var(--secondary-color);
}
.bg-brand-primary {
  background-color: var(--primary-color);
}
.bg-brand-secondary {
  background-color: var(--secondary-color);
}
.mt40 {
  margin-top: 40px;
}
.p80 {
  padding: 80px;
}
.p50 {
  padding: 50px;
}
.pt10 {
  padding-top: 10px;
}
.pt20 {
  padding-top: 20px;
}
.pt30 {
  padding-top: 30px;
}
.pt50 {
  padding-top: 50px;
}
.pt80 {
  padding-top: 80px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb80 {
  padding-bottom: 80px;
}
.pl0 {
  padding-left: 0;
}
.sticky-header {
  padding: 10px 0;
  background: transparent;
  min-height: 70px;
}

@media (max-width: 767px) {
  .sticky-header {
    padding: 8px 0;
    min-height: 50px;
  }
  
  .sticky-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .sticky-header .row {
    margin: 0;
  }
  
  .sticky-header .col-12 {
    padding: 0;
  }
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1280px;
}
.search-form {
  position: relative;
  top: 8px;
}
.search-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--primary-color);
  font-size: 22px;
  padding: 0 10px;
  color: #fff;
}
.top-bar-right {
  text-align: right;
}
.whatsapp-link {
  align-items: center;
  color: #25d366;
  display: inline-flex;
  font-size: 18px;
  text-decoration: none;
  margin-top: 7px;
}
.whatsapp-icon {
  animation: a 2s infinite;
  font-size: 34px;
  margin-right: 8px;
  transform: scale(1);
}
.top-bar-right .get-a-quote {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  top: -10px;
}
.menu,
.navbar {
  padding: 0;
}
.menu {
  display: flex;
  justify-content: end;
  width: 100%;
  column-gap: 15px;
}
.menu,
.menu > li {
  position: relative;
}
ul.menu li:after {
  content: "";
  height: 12px;
  width: 2px;
  background: #fff;
  display: inline-block;
  position: absolute;
  right: -10px;
  top: 7px;
}
ul.menu li:last-child:after {
  content: none;
}
.menu a {
  padding: 0;
  display: block;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.56px;
}
.menu a:hover {
  filter: opacity(0.5);
}
.site-logo a {
  max-width: 120px;
}

.banner-section {
  background: url(../img/baner-bg.webp);
  color: #fff;
  margin-top: -120px;
  padding-top: 160px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-color: #000;
  overflow: hidden;
  width: 100%;
}
.banner-profile-v {
  background: #fff;
  padding: 5px;
  border: 20px solid #000;
  border-radius: 25px;
  max-width: 450px;
  margin: auto;
  position: relative;
}
.b-v-footer img {
  border-radius: 50%;
}
.b-v-header img {
  max-width: 83px;
}
.b-v-header {
  color: #000;
  text-align: center;
  padding-top: 25px;
}
.b-v-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 16px;
}
.b-v-stats span.counter {
  font-size: 22px;
}
.b-v-header .b-p-name {
  color: #0c0c0c;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.2px;
  margin: 15px 0;
}
.b-v-header .b-p-name span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22px;
  display: block;
  margin-top: 5px;
}
.b-v-header .stat {
  color: #0c0c0c;
  font-family: Inter;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.stat span {
  font-family: Inter;
  font-size: 15px;
  letter-spacing: -0.45px;
  display: block;
  margin-top: 5px;
}
h1.m-head {
  text-shadow: 0 10px 9.4px rgba(0, 0, 0, 0.56);
  font-size: 52px;
  font-weight: 700;
  line-height: 65px;
  max-width: 682px;
}
h1.m-head,
p.sub-head {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
}
p.sub-head {
  margin: 15px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -1.54px;
  max-width: 500px;
}
.banner-section .trust-pilot-area {
  border-radius: 6px;
  border: 1px solid #fff;
  background: hsla(0, 0%, 85%, 0.1);
  max-width: 400px;
  padding: 12px 12px 6px;
  margin-bottom: 28px;
}
.banner-section .trust-pilot-area p {
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.9px;
  opacity: 0.6;
  margin: 0;
  margin-top: 5px;
}
.banner-section .trust-pilot-area img {
  max-width: 160px;
}
.b-float-box {
  display: flex;
  max-width: 212px;
  align-items: center;
  padding: 2px;
  color: #000;
  column-gap: 10px;
  border-radius: 60px;
  background: #fff;
  position: absolute;
  height: 68px;
  padding-right: 5px;
  opacity: 0;
  transform: translateX(0);
  transition: transform 2s cubic-bezier(0.79, 0.31, 0.5, 1.07),
    opacity 1s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.b-float-box img {
  max-width: 66px;
}
.b-float-box p {
  color: #595959;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.b-float-box.b-box-1 {
  top: 60px;
  left: -250px;
}
.b-float-box.b-box-2 {
  top: 230px;
  left: -160px;
}
.b-float-box.b-box-3 {
  top: 56px;
  right: -124px;
}
.b-float-box.b-box-4 {
  right: -84px;
  bottom: 84px;
}
.b-float-box.b-box-5 {
  left: 112px;
  bottom: -130px;
}
.b-box-1.active {
  left: -250px;
  opacity: 1;
  transform: translateX(100px);
}
.b-box-2.active {
  left: -160px;
  opacity: 1;
  transform: translateX(50px);
}
.b-box-3.active {
  right: -124px;
}
.b-box-3.active,
.b-box-4.active {
  opacity: 1;
  transform: translateX(-20px);
}
.b-box-4.active {
  right: -84px;
}
.b-box-5.active {
  bottom: -130px;
  opacity: 1;
  transform: translateY(-40px);
}
.banner-section a,
.banner-section img {
  width: 100%;
}
body .category-wrap .nav-tabs .nav-link {
  color: #3c3c3c;
  background: #e6cccd;
  box-shadow: 0 2px 4.2px 0 transparent;
  border-radius: 11px;
  border: 1px solid #e6cccd;
  text-align: center;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  padding: 12px 30px;
  font-weight: 500;
}
body .category-wrap .nav-tabs .nav-link.active {
  color: #fff;
  opacity: 0.8;
  background: #000;
  box-shadow: 0 2px 4.2px 0 rgb(0 0 0/37%);
  border: 1px solid #000;
}
.nav-tabs {
  border-bottom: none;
}
.category-wrap .header.p20 {
  text-align: center;
}
.category-wrap .nav-tabs {
  border-bottom: none;
  justify-content: center;
  column-gap: 20px;
  margin-bottom: 28px;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
}
.card-single {
  position: relative;
  background: #fff;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  font-family: sans-serif;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.price-badge {
  top: 15px;
  right: 26px;
  background: #000;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Poppins;
}
.discount,
.price-badge {
  position: absolute;
  color: #fff;
  font-weight: 700;
}
.discount {
  top: 0;
  left: 0;
  background: #333;
  font-size: 12px;
  padding: 5px 8px;
  border-bottom-right-radius: 8px;
  line-height: 1.2;
  text-align: center;
}
.discount span {
  display: block;
}
.card-single h3 {
  font-size: 24px;
  color: #333;
  width: 110px;
  margin: auto;
  font-weight: 700;
  font-family: Poppins;
  line-height: 34px;
}
.card-single a {
  display: inline-block;
  background: #7d0000;
  color: #fff;
  padding: 10px 25px;
  margin-top: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}
.card-single a:hover {
  background: #a30000;
}
ul.serv-features {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.96px;
  column-gap: 50px;
  margin-bottom: 40px;
}
ul.serv-features li:before {
  content: "";
  width: 20px;
  height: 18px;
  background: url(https://tiktocfame.com/public/front/assets/img/tick-icon.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 13px;
}
.category-wrap h1,
.hero-video-wrap h2 {
  font-weight: 600;
  width: fit-content;
  margin: auto;
  position: relative;
  margin-bottom: 30px;
}
section.category-wrap .header h1:before,
section.hero-video-wrap h2:before {
  content: "";
  width: 60px;
  height: 48px;
  background: url(https://tiktocfame.com/public/front/assets/img/h2-before.svg);
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  left: -34px;
  bottom: -7px;
}
section.category-wrap .header h1:after,
section.hero-video-wrap h2:after {
  content: "";
  width: 60px;
  height: 48px;
  background: url(https://tiktocfame.com/public/front/assets/img/h2-after.svg);
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  right: -61px;
  top: -3px;
}
section.category-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
section.category-wrap .show-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
section.category-wrap:after {
  content: "";
  width: 666px;
  height: 899px;
  background: url(https://tiktocfame.com/public/front/assets/img/bg-art-right.svg);
  position: absolute;
  display: block;
  z-index: -1;
  top: -10px;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  right: -26px;
  filter: opacity(0.5);
}
section.hero-video-wrap {
  background: #f8f8f8;
  position: relative;
  clip-path: polygon(0 0, 100% 35px, 100% 100%, 0 calc(100% - 35px));
  padding: 120px 0;
  z-index: 1;
}
p.sub-head-text {
  text-align: center;
  font-size: 18px;
  max-width: 845px;
  margin: auto;
  margin-bottom: 20px;
}
section.hero-video-wrap .row.pt-3 {
  text-align: center;
  margin: auto;
  justify-content: center;
}
section.hero-video-wrap:before {
  content: "";
  width: 450px;
  height: 611px;
  background: url(https://tiktocfame.com/public/front/assets/img/bg-art-left.svg);
  position: absolute;
  display: block;
  top: auto;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  right: auto;
  left: 0;
  bottom: 1px;
}
.aboutWrap h2 {
  color: #3f3f3f;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 28px;
}
.aboutWrap h2 span,
.testimonialWrap h2 span {
  color: #be0104;
}
.aboutWrap img {
  border-radius: 10px;
}
.requestQuote .container {
  background: rgb(255, 255, 255);
  padding: 30px;
  margin-bottom: 50px;
  border-radius: 20px;
  box-shadow: 10px 10px 20px -15px var(--secondary-color);
}
.requestQuote h3 {
  color: #000000;
  margin-bottom: 20px;
}
.aboutWrap p {
  margin-bottom: 28px;
  color: #3f3f3f;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.18px;
}
.card-step {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 40px 20px;
  border-radius: 20px;
  background: #fff;
}
.card-step span {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #be0104;
  padding: 20px;
  border-radius: 50px;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 20px;
}
section.actionsteps h2 {
  color: #fff;
  font-weight: 600;
}
section.actionsteps h2 span {
  color: #be0104;
}
section.actionsteps h3 {
  font-size: 28px;
}
section.actionsteps p {
  font-size: 18px;
}
section.actionsteps p.sub-head-text {
  color: #fff;
  margin-bottom: 40px;
}
section.actionsteps {
  background: #000;
  color: #fff;
  position: relative;
  clip-path: polygon(0 35px, 100% 0, 100% calc(100% - 35px), 0 100%);
  z-index: 1;
  padding: 120px 0 150px;
}
.faqsec {
  background: #f8f8f8;
  position: relative;
  clip-path: polygon(0 0, 100% 35px, 100% 100%, 0 calc(100% - 0px));
  padding: 120px 0;
  z-index: 1;
}
.faqsec h2 {
  font-weight: 600;
  margin-bottom: 40px;
}
.faqsec h2 span {
  color: #be0104;
}
.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  padding-left: 45px;
}
.faq-answer p {
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.faq-question {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  color: #333;
}
.faq-question:before {
  content: "+";
  position: absolute;
  left: -25px;
  font-size: 18px;
  color: #333;
  top: 0;
}
.faq-item.active .faq-question:before {
  content: "−";
  color: green;
}
.productsWrap .card-single img {
  border-radius: 10px;
}
.features-wrap {
  background-color: #f4b0b433;
}
.features-wrap .card-single img {
  border-radius: 0;
  width: 80px;
}
.features-wrap .card-single h3 {
  margin-top: 20px;
}
.whyChooseUs-wrap {
  background-color: #efefef;
}
.whyChooseUs-wrap .card-single {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px -3px #999;
}
.whyChooseUs-wrap .card-single i {
  color: var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
}
.testimonial-single {
  background: #fff9f9;
  text-align: left;
  padding: 30px 40px 20px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
  margin: 10px;
}
.CustomerInfo {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}
.CustomerInfo img {
  border-radius: 50%;
  width: 50px;
  max-width: 60px;
}
.stars.text-warning {
  display: flex;
}
.CustomerInfo h3 {
  color: #fff;
}
.CustomerInfo p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 15px;
  margin-left: 20px;
}
.stars.text-warning {
  margin-top: 8px;
}
.CustomerInfo p span {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}
.testimonialWrap .stars img {
  width: 20px;
}
.testimonial-single > p {
  margin: 10px 0 20px;
  font-size: 16px;
  margin-top: 16px;
  display: block;
  color: #5d5d5d;
  font-style: italic;
}
.testimonialWrap h2 {
  margin-bottom: 45px;
  color: #3f3f3f;
  font-size: 42px;
  line-height: 50px;
}
.CustomerName > span,
.testimonialWrap h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
}
.CustomerName > span {
  color: #000;
  font-size: 18px;
  line-height: 15px;
}
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}
.owl-next,
.owl-prev {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
  outline: none;
}
.owl-next:hover,
.owl-prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.owl-prev {
  margin-left: 10px;
}
.owl-next {
  margin-right: 10px;
}
.owl-next span,
.owl-prev span {
  font-size: 44px;
  font-weight: 700;
}
.customQuoteWrap {
  background: url(../img/custom-quote.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.customQuoteForm {
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 0 7px 0;
}
.customQuoteForm h2 {
  margin-bottom: 40px;
}
.customQuoteForm input {
  font-size: 12px;
  color: #999;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #dfdede;
}
.customQuoteForm textarea {
  border-radius: 10px;
  margin: 10px 0;
  height: 120px;
}
.customQuoteForm input[type="submit"],
.productCustomQuote input[type="submit"] {
  border: none;
  background-color: var(--secondary-color);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-radius: 10px;
}
.customQuoteForm input[type="submit"]:hover,
.productCustomQuote input[type="submit"]:hover {
  opacity: 0.6;
}
.customQuoteForm select {
  margin: 10px 0;
}
.quoteRequirments > div {
  padding-right: 5px;
}
.galleryWrap .card-single img {
  border-radius: 10px;
}
.mainBtn {
  background: linear-gradient(32deg, #005f73, #0a9396 79%);
  color: #fff;
  border-color: transparent;
}
.mainBtn:hover {
  color: #fff;
  opacity: 0.8;
}
.video-card {
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.video-card.selected {
  border-color: #005f73;
}
.selected-info {
  color: #333;
  background-color: #f0f2ff;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
}
#selected-count {
  color: #005f73;
  font-size: 1.2em;
}
#per-post-count {
  color: #1890ff;
  font-size: 1.2em;
}
.video-select-overlay {
  z-index: 10;
  opacity: 0.9;
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #005f73;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.video-card.selected .video-select-overlay {
  display: flex;
}
.video-card .card-title {
  display: none;
}
.product-details h1 {
  margin-bottom: 30px;
  color: #333;
}
.featuredImage {
  padding: 10px;
  text-align: center;
}
.featuredImage img {
  width: 90%;
}
.otherImages {
  margin: 20px 0;
  text-align: center;
}
.imageSingleWrap {
  display: inline-block;
  width: 19%;
  border: 1px solid #d2d2d2;
  padding: 5px;
  border-radius: 5px;
}
.imageSingleWrap img {
  width: 100%;
  height: 100%;
}
.productCustomQuote {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 #606060;
  margin-top: 20px;
  text-align: center;
}
.productCustomQuote > span {
  text-align: center;
  background: var(--secondary-color);
  color: #fff;
  display: inline-block;
  margin: 0 auto 30px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.productCustomQuote input,
.productCustomQuote select {
  border-radius: 10px;
  margin: 10px 0;
  box-shadow: 0 0 5px -3px;
  height: 60px;
}
.fileUploadArea,
.productCustomQuote textarea {
  margin: 10px 0;
  height: 120px;
}
.fileUploadArea {
  position: relative;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
}
.fileUploadArea p {
  margin-top: 10px !important;
  font-size: 14px !important;
}
.fileUploadArea span {
  font-weight: 700;
}
.fileUploadArea svg {
  width: 40px;
}
.fileUploadArea input {
  position: absolute;
  left: 0;
  top: -10px;
  right: 0;
  z-index: 1000;
  height: 120px;
  opacity: 0;
}
.productFeatures {
  font-size: 16px;
  background: #eaf6ff;
  padding: 20px;
}
.productFeatures i {
  color: var(--secondary-color);
  margin-right: 20px;
  font-size: 20px;
}
.fileUploadWrap {
  position: relative;
}
#filePreview,
#popfilePreview {
  position: absolute;
  top: -9px;
  left: 0;
  bottom: 1px;
  right: 0;
  background: var(--third-color);
  border-radius: 5px;
  color: #fff;
  padding-top: 20px;
}
#poppreviewImage,
#previewImage {
  display: none !important;
}
.input-placeholder {
  position: relative;
}
.placeholder {
  position: absolute;
  color: red;
  top: 30px;
  left: 25px;
}
.input-placeholder input:valid + .placeholder {
  display: none;
}
.quoteModal .placeholder {
  top: 25px;
}
.productTabs .nav-tabs {
  border-bottom: 1px solid var(--primary-color);
  text-align: center;
}
.productTabs .nav-tabs .nav-link {
  background: transparent;
  padding: 10px;
}
.productTabs .nav-tabs .nav-link:hover {
  background: var(--secondary-color);
  color: #fff;
}
.productTabs .nav-tabs .nav-link.active {
  background: var(--primary-color);
  color: #fff;
}
.productTabs .tab-content {
  padding: 20px 20px 0;
}
.dynamicContent ul,
.privacyWrap ul,
.tab-content ul {
  padding-left: 30px;
}
.dynamicContent li,
.privacyWrap li,
.tab-content li {
  list-style: disc;
}
.processWrap .col-6 {
  font-weight: 600;
  font-size: 16px;
}
.bottomContent h2,
.bottomContent h3,
.dynamicContent h2,
.dynamicContent h3,
.productTabs h2,
.productTabs h3 {
  margin: 10px 0;
}
.processWrap span.circle {
  display: inline-block;
  border: 1px solid #333;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  font-size: 20px;
}
.processWrap h3 {
  margin: 20px 0;
}
.processWrap table {
  width: 100%;
  text-align: left;
}
.processWrap tr:nth-child(odd) {
  background-color: #f2f2f2;
}
.processWrap td,
.processWrap th {
  padding: 5px;
}
.processWrap tr:nth-child(2n) {
  background-color: #fff;
}
.mainBanner img {
  width: 100%;
}
.breadcrums {
  padding: 30px 0;
}
.breadcrums p {
  text-transform: capitalize;
  letter-spacing: 2px;
}
.breadcrums p span {
  margin: 0 15px;
}
.breadcrums p a:hover {
  opacity: 0.7;
}
.product-details .breadcrums a,
.product-details .breadcrums p {
  color: #777;
}
.product-details .breadcrums {
  padding: 0 0 30px;
}
footer {
  padding: 50px 0 10px;
  background: #202021;
  color: #fff;
}
footer .widget-title {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 700;
}
footer .widget-title,
footer ul li a {
  color: #d7d5d5;
  margin-bottom: 10px;
}
footer ul li a:hover {
  color: var(--secondary-color);
}
footer .footer-copyright-area .social-links ul li {
  margin-right: 15px;
  display: inline;
}
footer .footer-copyright-area .social-links ul li.title {
  margin-right: 20px;
  color: #fff;
  font-weight: 600;
}
footer .footer-copyright-area .social-links ul li:last-child {
  margin-right: 0;
}
footer .footer-copyright-area .social-links ul a {
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}
footer .footer-copyright-area .social-links ul a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
footer .footer-copyright-area .copyright-text {
  font-size: 14px;
  margin-top: 10px;
}
footer .footer-copyright-area .copyright-text span {
  color: #858585;
}
.footer-copyright-area {
  margin-top: 30px;
}
.address-widget a {
  color: #fff;
}
.address-widget a:hover {
  color: var(--secondary-color);
}
form#contactForm input,
form#contactForm textarea {
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
}
form#contactForm input[type="submit"] {
  background-color: #be0104;
  color: #fff;
  border-radius: 5px;
  max-width: fit-content;
  margin: auto;
  width: 100%;
  min-width: 230px;
}
.category-wrap .header p a {
  color: #be0104;
}
.category-wrap .header,
.contactPageForm .contact-submit-btn {
  margin: auto;
  display: flex;
  justify-content: center;
}
.category-wrap .header {
  width: 600px;
  flex-direction: column;
  max-width: 600px;
}
.contactPageWrap .social-links {
  width: 100%;
  padding: 20px 0;
}
.contactPageWrap .social-links li {
  display: inline-block;
  text-align: center;
}
.contactPageWrap .social-links a {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--secondary-color);
  line-height: 40px;
  font-size: 18px;
  border-radius: 5px;
  color: var(--secondary-color);
  margin: 0 20px;
}
.contactPageWrap .social-links a:hover {
  background: var(--secondary-color);
  color: #fff;
}
.contactPageWrap .footerContactArea {
  width: 100%;
  margin-top: 30px;
}
.contactPageWrap .footerContactArea h3 {
  color: #333;
}
.contactPageWrap .footerContactArea a {
  color: var(--primary-color);
}
.contactPageWrap .footerContactArea i {
  font-size: 30px;
  margin-bottom: 30px;
}
.contactPageForm {
  width: 100%;
  margin-top: 40px;
}
.contactPageForm .row {
  margin: 20px 0;
}
.contactPageForm input[type="submit"] {
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 5px;
}
.contactPageForm input[type="submit"]:hover {
  background-color: var(--primary-color);
}
.contactWrap h1 {
  font-size: 40px;
}
.contactWrap .footerContactArea h3 {
  margin: 10px 0;
}
.privacyWrap h1 {
  margin: 0 0 30px;
}
.privacyWrap h2,
.privacyWrap h3 {
  margin: 30px 0 10px;
}
.privacyWrap p {
  width: 100%;
  line-height: 35px;
}
.submitBtnWrap {
  position: relative;
}
.loadingWrap {
  text-align: center;
  position: absolute;
  top: 10px;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 3px;
  display: none;
  left: 15px;
  right: 15px;
}
.loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #fff 90%, #0000);
  background: var(--_g) 0 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.33333% 50%;
  animation: b 1s infinite linear;
  display: inline-block;
}
@keyframes b {
  20% {
    background-position: 0 0, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0 100%, 50% 0, 100% 50%;
  }
  60% {
    background-position: 0 50%, 50% 100%, 100% 0;
  }
  80% {
    background-position: 0 50%, 50% 50%, 100% 100%;
  }
}
#quoteModal {
  text-align: center;
}
#quoteModal .customQuoteForm {
  box-shadow: unset;
  padding-top: 15px;
  padding-bottom: 0;
}
.quoteModal .col-12 {
  padding: 0 20px;
  position: relative;
}
.quoteModal .popupHeading {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
}
.quoteModal .btn-close {
  position: absolute;
  background: top;
  right: 40px;
  font-size: 20px;
  top: 10px;
}
.quoteModal .productCustomQuote {
  background: #fff;
  padding: 30px;
  border-radius: unset;
  box-shadow: unset;
  margin-top: 0;
}
.quoteModal .productCustomQuote input,
.quoteModal .productCustomQuote select {
  height: 50px;
}
.quoteModal .fileUploadArea input {
  height: 120px;
}
.quoteModal img {
  height: 100%;
}
.bottomContent ul {
  padding-left: 20px;
}
.bottomContent li {
  list-style: disc;
}
.related-subcategories h3 {
  margin-top: 10px;
}
.related-subcategory-card img {
  border-radius: 10px;
}
.postsWrap .card-body {
  padding: 0 !important;
  position: relative;
}
.postsWrap .card-text {
  color: #fb8181;
  position: absolute;
  background: rgba(0, 0, 0, 0.19);
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  font-size: 11px;
}
.navbar-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1070;
  top: 0;
  background: #171717;
  padding: 15px;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.navbar-mobile-header {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}
.navbar-mobile-header h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.navbar-mobile-header a {
  color: #fff;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  background: #333;
  transition: background 0.3s ease;
}
.navbar-mobile-header a:hover {
  background: #555;
}
.navbar-mobile.active {
  display: block;
}
.navbar-mobile .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-mobile .menu li {
  margin-bottom: 10px;
}
.navbar-mobile .menu a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar-mobile .menu a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(5px);
}
.navbar-mobile .dropdown-menu {
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  margin-top: 5px;
  padding: 10px 0;
}
.navbar-mobile .dropdown-item {
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.navbar-mobile .dropdown-item:hover {
  background: var(--primary-color);
  color: #fff;
}
.navbar .nav-open-btn {
  color: #fff;
  position: relative;
  top: 0;
  font-size: 24px;
  z-index: 1060;
  display: block;
  padding: 8px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .navbar .nav-open-btn {
    top: 0;
    position: relative;
    padding: 5px;
    margin: 0;
  }
  
  .sticky-header .container.d-md-none {
    padding: 0 15px;
    margin-top: 0;
  }
  
  .sticky-header .navbar {
    padding: 0;
    margin: 0;
    height: auto;
  }
}
header.sticky-header.header-checkout {
  background: #171717;
}
section.checkout-sec {
  background: #fff;
}
p.sub-text {
  color: #676767;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.row.head {
  margin-bottom: 40px;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: none;
  border-radius: 0;
}
.form-control,
.select2-selection__rendered {
  display: block;
  width: 100%;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 6px;
  border: 1px solid #a6a1a1;
  background: #f3f3f3;
  height: 52px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: Poppins, serif;
}
.select2-selection__rendered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-name {
  flex-grow: 1;
  padding-left: 35px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 11px;
}
.product-icon {
  left: 20px;
  top: 26px;
  color: #be0104;
  font-size: 15px;
  z-index: 10;
}
.product-icon,
.product-price {
  position: absolute;
  transform: translateY(-50%);
}
.product-price {
  font-weight: 700;
  right: 44px;
  top: 24px;
  margin-top: 3px;
}
.checkout-container h3 span {
  color: #be0104;
}
.checkout-container h3 {
  color: #434d56;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 25px;
}
h2.form-head {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 0;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 52px;
  position: absolute;
  top: 12px !important;
  right: 8px;
  width: 20px;
}
span.select2-selection.select2-selection--single {
  border: none;
}
button#nextBtn {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  border-radius: 6px;
  background: #be0104;
  padding: 20px 40px;
  min-width: 200px;
  display: flex;
  width: 446px;
  height: 61px;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
footer .social-icons .social-links ul a {
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
footer .social-icons .social-links ul li {
  margin-right: 15px;
  display: inline;
}
footer .social-icons .social-links ul {
  margin-top: 15px;
}
footer .social-icons .social-links ul a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
footer .address-widget a img {
  width: 80px;
}
footer .contact-widget a {
  color: #d7d5d5;
  margin-bottom: 10px;
}
footer .widget.address-widget p {
  color: #d7d5d5;
  margin-bottom: 24px;
}
footer .copyright-text p {
  color: #858585;
  margin-right: 10px;
}
footer .copyright-text p a {
  color: #858585;
}
footer .privacypolicy-area p {
  border-right: 2px solid #858585;
  padding-right: 10px;
}
footer .nav-widget i.fa-solid.fa-greater-than {
  margin-right: 9px;
  color: #fff;
  font-size: 10px;
}
footer .contact-widget p i {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
}
section.checkout-sec:after {
  content: "";
  background: url(https://tiktocfame.com/public/front/assets/img/chekoutafter.png);
  position: absolute;
  top: -95px;
  right: 0;
  width: 217px;
  height: 951px;
  background-repeat: no-repeat;
  background-size: cover;
}
section.checkout-sec:before {
  content: "";
  background: url(https://tiktocfame.com/public/front/assets/img/chekoutbefore.png);
  position: absolute;
  top: 14px;
  left: 0;
  width: 173px;
  height: 858px;
  background-repeat: no-repeat;
  background-size: cover;
}
.checkout-right-box .right-box-content {
  background: #f4f4f4;
  padding: 30px 20px;
  border-radius: 20px;
}
header.sticky-header.header-blog,
header.sticky-header.header-contact {
  background: #202021;
}
.upsell-item:active {
  background-color: rgb(49 49 49) !important;
}
ul.feature-list li {
  margin: 10px 0;
}
ul.feature-list li i {
  margin-right: 10px;
}
button#submit-button {
  background: #be0104;
  color: #fff;
  border-radius: 12px;
  width: 446px;
  height: 61px;
  padding: 20px 0;
  align-items: center;
  flex-shrink: 0;
}
.userInfoWrap .row,
button#submit-button {
  justify-content: center;
}
.right-box-content:before {
  content: "";
  background: url(https://tiktocfame.com/public/front/assets/img/Real-tiktok-vector.png);
  position: absolute;
  top: 14px;
  left: 46%;
  width: 27px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}
.right-box-content ul.feature-list li {
  color: #676767;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.right-box-content h2 span {
  color: #be0104;
}
.right-box-content h2 {
  color: #464646;
  font-size: 36px;
  font-weight: 500;
}
.right-box-content h2,
.right-box-content p {
  font-family: Poppins;
  font-style: normal;
  line-height: normal;
}
.right-box-content p {
  color: #676767;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.price-wrapper-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}
.old-price-modern {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  font-weight: 500;
}
.sale-price-modern {
  color: #222;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
  .banner-section {
    padding-left: 0;
    padding-right: 0;
  }
  h1.m-head {
    font-size: 42px;
    line-height: 50px;
  }
  h2 {
    font-size: 38px;
  }
  .p80 {
    padding-left: 0;
    padding-right: 0;
  }
  .aboutWrap h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 1240px) {
  footer .address-widget {
    width: 83%;
  }
  .checkout-sec p.sub-text {
    width: 990px;
  }
}
@media (min-width: 1240px) {
  .chekout-page-style .chek-out-form-content {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .chekout-page-style .row.head {
    padding: 0 15px;
  }
  .chekout-page-style .chek-out-form-content {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }
  .chekout-page-style .chek-out-form-content .col-md-6.checkout-container,
  .chekout-page-style .chek-out-form-content .col-md-6.checkout-right-box {
    max-width: 100%;
    flex: 0 0 100%;
  }
  span.select2.select2-container.select2-container--default {
    width: 100% !important;
  }
  section.checkout-sec:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
    font-weight: 700;
  }
  .right-box-content h2 {
    font-size: 24px;
  }
  section {
    width: 100%;
    overflow: hidden;
  }
  .banner-section {
    background-position: bottom;
  }
  .banner-section .row.align-items-center {
    flex-direction: column;
  }
  .banner-section .col-md-7.col-12 {
    order: 2;
  }
  .banner-profile-v {
    max-width: 520px;
  }
  .banner-section .col-md-5.col-12,
  .banner-section .col-md-7.col-12 {
    width: 100%;
    flex: 100%;
    max-width: 100%;
  }
  .banner-section .col-md-7.col-12 {
    margin-top: 108px;
    max-width: 80%;
  }
  ul.serv-features {
    font-size: 18px;
    column-gap: 15px;
  }
  .card-single h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 28px;
  }
  .price-badge {
    font-size: 14px;
    font-weight: 600;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 20px;
  }
  .card-single a {
    padding: 8px 20px;
    border-radius: 6px;
  }
  .card-single {
    padding: 15px 20px;
  }
  .btn-primary {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 20px;
  }
  .aboutWrap p {
    font-size: 16px;
    font-weight: 400;
  }
  .aboutWrap h2 {
    line-height: 36px;
  }
  .aboutWrap h2,
  h2 {
    font-size: 30px;
  }
  section.actionsteps h3 {
    font-size: 22px;
  }
  .card-step {
    padding: 35px 15px;
    line-height: 28px;
  }
  section.actionsteps p {
    font-size: 16px;
  }
  @media screen and (max-width: 560px) {
    .banner-section {
      margin-top: -140px;
      padding-top: 140px;
    }
    .b-float-box.b-box-3 {
      top: -48px;
      right: -110px;
    }
    .b-float-box.b-box-1 {
      top: 8px;
      left: -146px;
    }
    .b-float-box.b-box-2 {
      left: -62px;
    }
    .b-float-box.b-box-5 {
      bottom: -100px;
    }
    .b-box-3.active {
      right: -110px;
      opacity: 1;
      transform: translateX(-80px);
    }
    .b-box-1.active {
      left: -146px;
      opacity: 1;
      transform: translateX(100px);
    }
    .b-box-2.active {
      left: -62px;
    }
    .b-box-2.active,
    .b-box-4.active {
      opacity: 1;
      transform: rotate(60deg);
    }
    .b-box-4.active {
      right: -84px;
    }
    .b-box-5.active {
      bottom: -100px;
      opacity: 1;
      transform: translateY(-40px);
    }
    .b-float-box {
      height: 52px;
      width: 170px;
    }
    .b-float-box img {
      max-width: 50px;
    }
    .site-logo a {
      max-width: 80px;
    }
    nav.navbar {
      justify-content: end;
    }
    header.sticky-header {
      display: flex;
      justify-content: space-between;
      width: 100%;
      max-width: 100%;
    }
    .navbar .nav-open-btn {
      color: #fff;
      position: relative;
      top: -42px;
      font-size: 29px;
    }
    .banner-section .col-md-7.col-12 {
      margin-top: 85px;
      max-width: 100%;
    }
    h1.m-head {
      font-size: 28px;
      line-height: 42px;
    }
    p.sub-head {
      font-size: 16px;
      line-height: 32px;
      letter-spacing: normal;
    }
    ul.serv-features li:before {
      width: 15px;
      height: 12px;
      margin-right: 3px;
    }
    ul.serv-features {
      font-size: 15px;
      column-gap: 10px;
    }
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .category-wrap .nav-tabs {
      column-gap: 10px;
      row-gap: 10px;
    }
    body .category-wrap .nav-tabs .nav-link {
      font-size: 16px;
      letter-spacing: normal;
      padding: 10px 16px;
    }
    .category-wrap h2,
    .hero-video-wrap h2 {
      margin-bottom: 20px;
    }
    .b-v-stats {
      gap: 34px;
    }
    .actionsteps .crush-tiktok div.col-md-4 {
      padding: 12px;
    }
    section.actionsteps .row .col-md-4 {
      padding: 12px !important;
    }
    .footer-copyright-area .copyright-text {
      flex-direction: column;
      justify-content: center;
    }
    .footer-copyright-area .copyright-text .privacypolicy-area {
      justify-content: center;
      margin-bottom: 5px;
    }
    .footer-copyright-area .copyright-text .privacypolicy-area p:last-child {
      border: none;
    }
    .footer-copyright-area .copyright-text .footer-copyright-widget {
      text-align: center;
    }
    .category-wrap .header {
      width: 100%;
    }
    .testimonialWrap h2 {
      font-size: 30px;
    }
    .menu {
      flex-direction: COLUMN;
    }
    ul.menu LI {
      margin: 10px;
    }
    .navbar-mobile-header h3 {
      color: #fff;
    }
    .navbar-mobile.animate__animated.animate__fadeInTopRight.active {
      background: #171717;
    }
    form#contactForm input[type="submit"] {
      width: 100%;
      min-width: 100%;
    }
    section.category-wrap.contactWrap.galleryWrap.p50 {
      padding: 20px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .contact-form-widget {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .contact-form-widget div {
      padding: 0 15px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    .contact-form-widget .col-lg-8 {
      width: 100%;
      max-width: 100%;
      padding: 0;
      box-sizing: border-box;
    }
    .contactWrap .header {
      padding: 15px 0;
      text-align: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }
    .contactWrap .header h1 {
      font-size: 28px;
      margin-bottom: 15px;
      line-height: 1.3;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
      max-width: 100%;
    }
    .contactWrap .header p {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 10px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
    }
    .contactWrap .header p a {
      display: inline-block;
      margin: 0 5px;
      word-break: break-all;
      max-width: 100%;
    }
    .contactPageForm {
      margin-top: 20px;
      padding: 20px 15px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    form#contactForm input,
    form#contactForm textarea {
      width: 100%;
      padding: 15px;
      font-size: 16px;
      border: 2px solid #e1e5e9;
      border-radius: 8px;
      margin: 0 0 15px 0;
      transition: border-color 0.3s ease;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }
    form#contactForm input:focus,
    form#contactForm textarea:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(190, 1, 4, 0.1);
    }
    form#contactForm textarea {
      min-height: 120px;
      resize: vertical;
    }
    .contactPageForm .row {
      margin: 0;
    }
    .contactPageForm .row div {
      padding: 0;
      margin-bottom: 15px;
    }
    .contact-submit-btn {
      margin-top: 20px;
      text-align: center;
    }
    form#contactForm input[type="submit"] {
      width: 100%;
      padding: 15px 30px;
      font-size: 18px;
      font-weight: 600;
      background-color: var(--secondary-color);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    form#contactForm input[type="submit"]:hover {
      background-color: var(--primary-color);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(190, 1, 4, 0.3);
    }
    .contactPageForm div[id^="error-"] {
      font-size: 14px;
      margin-top: 5px;
      padding-left: 5px;
    }
    #success-message,
    #error-message {
      font-size: 16px;
      margin-top: 15px;
      padding: 10px;
      border-radius: 5px;
      text-align: center;
    }
    #success-message {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }
    #error-message {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }
    .alert {
      font-size: 16px;
      padding: 15px;
      margin-bottom: 20px;
      border-radius: 8px;
    }
    .alert-danger {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }
    .alert-success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }
    section.aboutWrap {
      padding: 6px 20px 80px;
    }
  }
}
.lang-dropdown {
  position: relative;
  margin-left: 15px;
}
.lang-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
}
.lang-dropdown .dropdown-toggle:after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
}
.lang-flag {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  border-radius: 2px;
  object-fit: cover;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 0;
  margin-top: 0px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
  text-decoration: none;
}
.dropdown-item.active {
  background-color: #e9ecef;
}
@media (max-width: 767px) {
  .navbar-mobile .lang-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 1px solid #eee;
    margin-top: 5px;
    margin-left: 15px;
  }
  .navbar-mobile .lang-dropdown .dropdown-toggle:after {
    float: right;
    margin-top: 8px;
  }
}
.dropdown:hover .dropdown-menu {
  display: block !important;
}
.dropdown {
  position: relative;
}
.dropdown .dropdown-menu {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown .dropdown-toggle {
  position: relative;
  cursor: pointer;
}
.dropdown .dropdown-toggle:after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
}
