/* fonts  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #fd8e06;
  --secondery: #1d3557;
  --heading: #0a0929;
  --size-sec: 100px;
  --btn-color: #0ebac5;
  --transition: 0.3s all ease;
  --green: #2a9d8f;
  --white: #ffffff;
  --whiteLight: #edf2f4;
  --black: #000000;
  --rotateClip: polygon(0 15%, 100% 0, 100% 88%, 0 100%);
  --focusBox: 0 0 0 0.25rem rgba(42, 157, 143, 0.2);
  --boxshadowPink: 0px 17px 53px 0px rgba(244, 238, 255, 1);
  --boxshadowLIght: 0px 18px 12.85px 0px rgba(244, 238, 255, 0.1);
  --bottomLayer: linear-gradient(180deg, rgba(120, 115, 115, 0) 0%, rgba(18, 17, 17, 0.8) 100%);
  --pink: rgba(191, 36, 240, 1);
}

/* box shadows  */

.boxshadow-ping .card-2,
.boxshadow-ping .hero-cards,
.boxshadow-ping .accordion-item,
.boxshadow-ping .deffirince-card,
.boxshadow-ping .small-card,
.boxshadow-ping .template,
.boxshadow-ping form {
  box-shadow: var(--Boxshadow);
  -webkit-box-shadow: 0px 17px 53px 0px rgba(244, 238, 255, 1);
}

.boxshadow-light-ping .card-2,
.boxshadow-light-ping .hero-cards,
.boxshadow-light-ping .accordion-item,
.boxshadow-light-ping .deffirince-card,
.boxshadow-light-ping .small-card,
.boxshadow-light-ping .template,
.boxshadow-light-ping form {
  box-shadow: var(--boxshadowLIght);
  -webkit-box-shadow: 0px 18px 12.85px 0px rgba(244, 238, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  background-color: var(--whiteLight);
}

html,
body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
}

p {
  color: var(--heading);
}

h1 {
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  text-transform: capitalize;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  text-transform: capitalize;
}

ul {
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
}

/* site btn  */
@keyframes btnIcon {

  0%,
  100% {
    transform: translateX(-5px);
  }

  25% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.site-btn:hover i {
  animation: btnIcon 1.3s linear infinite;
}

.site-btn:hover:active i {
  animation: unset;
}

a.site-btn {
  display: inline-flex;
}

.site-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-width: 180px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  z-index: 1;
  border: 1px solid var(--green);
  color: var(--white);
  overflow: hidden;
  transition: 0.3s all ease;
  padding: 12px;
  background-color: var(--green);
}

.site-btn:hover {
  color: var(--green);
  background-color: transparent;
  transition: var(--transition);
}

.site-btn::before,
.btn2::before {
  background-color: var(--white);
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: var(--transition);
}

.site-btn:hover::before {
  height: 100%;
}

.site-btn:hover:active::before {
  background-color: transparent;
}

.btn2 {
  background-color: transparent;
  color: var(--green);
  border: 1px solid var(--whiteLight);
  color: var(--whiteLight);
}

.btn2:hover {
  color: var(--green);
  border: 1px solid var(--green);
}

.btn-3 {
  background-color: #fd8e06;
  border: 1px solid var(--primary);
}

.btn-3:hover {
  color: var(--primary);
}

.theam1 {
  max-width: 2000px;
  margin: auto;
}

/* hamburder manu  */
.hamburger {
  margin: 0 auto;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

.hamburger .bar {
  padding: 0;
  width: 30px;
  height: 4px;
  background-color: var(--white);
  display: block;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  position: absolute;
}

.bar1 {
  top: 5px;
}

.bar2,
.bar3 {
  top: 13.5px;
}

.bar3 {
  right: 0;
}

.bar4 {
  bottom: 3px;
}

.checkbox2:checked+label>.hamburger2>.bar1 {
  transform: translateX(40px);
  background-color: transparent;
}

.checkbox2:checked+label>.hamburger2>.bar2 {
  transform: rotate(45deg);
}

.checkbox2:checked+label>.hamburger2>.bar3 {
  transform: rotate(-45deg);
}

.checkbox2:checked+label>.hamburger2>.bar4 {
  transform: translateX(-40px);
  background-color: transparent;
}

.visuallyHidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.wrapper {
  max-width: 1177px;
  margin: auto;
}

/* header  */
.header {
  position: absolute;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100%;
}

.header nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--whiteLight);
}

.header img {
  max-width: 170px;
}

.header .navbar-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 16px;
  color: var(--white);
}

.header .navbar-nav .nav-link {
  padding: 0;
  color: var(--whiteLight);
}

.header .navbar-nav .nav-link:hover {
  color: var(--green);
}

.header .dropdown-toggle {
  position: relative;
  z-index: 1;
}

.header .dropdown:hover .dropdown-toggle::after {
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transition: 0.2s all ease;
}

.header .dropdown-toggle::after {
  content: "";
  border: unset;
  border-top: 2px solid var(--whiteLight);
  border-right: 2px solid var(--whiteLight);
  width: 6px;
  height: 6px;
  position: static;
  z-index: -1;
  top: 10px;
  right: -11px;
  margin: 0;
  transform: rotate(45deg);
  border-radius: 1px 2px 1px 2px;
  vertical-align: middle;
}

.header .dropdown-toggle.show::after {
  transform: rotate(135deg);
}

.header .site-btn {
  min-width: 130px;
}

.nav-link.active {
  color: var(--green) !important;
}

/* hero section  */

.padding-100 {
  padding: 50px 0;
}

.theam1 .hero-sec {
  padding-top: 220px;
  position: relative;
  z-index: 1;
}

.blue-bg {
  background-color: var(--secondery);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}

.blue-bg .img {
  position: relative;
  height: 100%;
}

.blue-bg .img img {
  position: absolute;
  z-index: 0;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: max-content;
}

.theam1 .green-subtitle span {
  background-color: var(--green);
  color: var(--white);
}

.green-subtitle span {
  border-radius: 8px;
  padding: 6px 15px;
  font-size: 20px;
  font-weight: 500;
}

.orange-title a,
.orange-title span,
.orange-title button {
  position: relative;
  z-index: 1;
  padding: 0px 20px;
  color: var(--white);
  white-space: nowrap;
}

.orange-title a,
.orange-title button {
  border: unset;
  background-color: transparent;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 30px;
  transition: var(--transition);
}

.orange-title a:hover,
.orange-title button:hover {
  transform: scale(1.05, 1.01);
  transition: var(--transition);
}

.orange-title a::before,
.orange-title span::before,
.orange-title button::before {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.theam1 .orange-title a::before,
.theam1 .orange-title span::before,
.theam1 .orange-title button::before {
  background-image: url(../images/orange-btn-img.webp);
}

.hero-sec .text p {
  color: var(--white);
  max-width: 625px;
  margin: 20px 0 30px;
  line-height: 1.6;
  font-size: 15px;
}

.hero-sec .accordion-button {
  padding: 0 !important;
  border-radius: 8px;
}

.hero-sec .accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-sec .accordion-button::after {
  display: none;
}

.hero-sec .accordion-item {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 8px;
}

.hero-sec .accordion-body {
  padding: 0 !important;
}

.hero-sec .video {
  margin-bottom: 0px !important;
}

.hero-sec .hero-cards {
  box-shadow: unset;
}

.hero-sec .card-px {
  padding-bottom: 0;
}

/* hero cards  */
.theam1 .hero-cards {
  background-color: var(--white);
  height: 100%;
}

.hero-sec .cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-cards {
  padding: 10px;
  border-radius: 8px;
}

.hero-cards .inner-card {
  display: flex;
  gap: 15px;
  align-items: center;
}

.theam1 .hero-cards .card-img {
  background-color: #fd8e06;
}

.theam1 .hero-cards .card-img {
  display: inline-flex;
  width: auto;
  padding: 6px;
  border-radius: 6px;
}

.hero-cards .card-img img {
  max-width: 38px;
}

.hero-cards .video {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.hero-cards .video img {
  height: 100%;
  object-fit: cover;
}

.card-px {
  padding: 5px 5px 10px 5px !important;
}

.card-px .inner-card {
  padding: 0 5px;
}

.layer-video {
  position: relative;
  z-index: 1;
}

.layer-video::before {
  background-color: rgba(10, 9, 41, 0.25);
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.paly-btn {
  position: relative;
  z-index: 1;
}

.video-2:hover .paly-btn::after,
.card2:hover .paly-btn::after {
  transform: scale(1.05);
  transition: var(--transition);
}

/* .video-2 iframe {
	border-radius: 16px;
	width: 100%;
	min-height: 600px;
} */
.theam1 .paly-btn::after {
  background-color: var(--secondery);
}

.paly-btn::after {
  content: "";
  background-image: url(../images/play-icon.webp);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  height: 45px;
  width: 45px;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background-position: 55%;
  transition: 0.3s all ease;
  outline: 6px solid rgba(29, 53, 87, 0.18);
  background-clip: content-box;
  border: 6px solid;
  border-color: rgba(29, 53, 87, 0.4);
  transition: var(--transition);
}

.hero-sec .video-2 {
  margin-top: 70px;
}

.paly-btn-big::after {
  width: 75px;
  height: 75px;
  border-width: 10px;
  outline-width: 8px;
  background-size: 20px 20px;
}

.video-2 {
  border-radius: 16px;
  overflow: hidden;
}

/* splide section  */
.splide-section {
  background-color: var(--whiteLight);
}

.card-2 {
  background-color: var(--white);
  padding: 28px;
  border-radius: 8px;
  height: 100%;
  transition: var(--transition);
}

.card-2:hover,
.card-3:hover {
  transform: translateY(-5px);
}

.card-2 h4 {
  margin: 20px 0 10px;
}

.splide-main .title p {
  margin: 10px 0 30px;
}

.splide .card-2 {
  cursor: grab;
  transition: unset;
}

.splide-main .card-2:hover {
  transform: unset;
}

.splide-main .card-2:hover :is(p, h4) {
  color: var(--heading);
}

/* pay-serivce section  */
.pay-serivce .title p {
  margin: 10px 0 50px;
}

.pay-serivce .card-2 h4 {
  font-size: 20px;
  text-transform: capitalize;
}

.padding-t-250 {
  padding-top: 250px;
}

/* demo-shop-sec  */
.demo-shop-sec {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.theam1 .demo-shop-sec::before {
  background-color: var(--secondery);
}

.demo-shop-sec::before,
.rotate-bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 15%, 100% 0, 100% 88%, 0 100%);
}

/* icons colors  */

.theam1 .color-1 {
  stroke: var(--green);
}

.theam1 .color-2 {
  stroke: var(--primary);
}

.theam1 .check-icon .color-2 {
  fill: var(--primary);
  stroke: unset;
}

.theam1 .check-icon .color-1 {
  fill: var(--green);
}

.title.title-white :where(p, h2) {
  color: var(--white);
}

.title.title-white p {
  margin: 15px 0 40px;
}

.title.margin-p p {
  margin: 15px 0 40px;
}

.coming-feature .title p {
  margin-bottom: 20px;
}

.demo-shop-sec .site-btn {
  min-width: unset;
  width: 100%;
}

/* coming-feature  */

.coming-feature {
  position: relative;
}

.padding-2-1 {
  padding: 200px 0 140px;
  margin-top: -11%;
}

.theam1 .rotate-bg::before {
  background-color: var(--primary);
}

.coming-feature .hero-cards h4 {
  margin-bottom: 8px;
}

.coming-feature .hero-cards .card-text {
  padding: 10px 10px 30px;
}

/* Simple Pricing  */

.plan-select label {
  color: var(--heading);
  font-weight: 500;
  font-size: 16px;
}

.plan-select .form-check-input {
  width: 84px;
  height: 36px;
  margin: 0;
  background-size: 38.5%;
  background-position: left 1px center;
  background-color: rgba(29, 53, 87, 0.1);
}

.theam1 .plan-select .form-check-input {
  background-image: url(../images/toggle-cersol.webp);
}

.theam1 .plan-select .form-switch .form-check-input:checked {
  background-color: var(--green);
}

.plan-select .form-switch .form-check-input:checked {
  background-image: url(../images/toggle-cersol2.webp);
  border: 1px solid transparent;
  background-position: right 1px center;
}

.plan-select .form-check {
  padding: 0;
  margin: 0;
  height: 100%;
  min-height: unset;
}

.theam1 .plan-select .form-check-input:focus {
  box-shadow: var(--focusBox);
  border: 1px solid var(--green);
}

.card-3 {
  border: 1px solid var(--green);
  padding: 25px 28px 40px;
  border-radius: 20px;
  height: 100%;
  transition: var(--transition);
}

.card-3 .card-3-title h3 {
  font-size: 32px;
  font-weight: 700;
}

.theam1 .card-3 .card-3-title h3 {
  color: var(--primary);
}

.card-3 .card-3-title span {
  color: var(--heading);
  display: block;
}

.card-3 .price p {
  font-size: 40px;
  font-weight: 700;
  margin: 14px 0;
  text-align: center;
}

.theam1 .card-3 .price p {
  color: var(--green);
}

.theam1 .card-3 .price strong {
  font-size: 36px;
  font-weight: 700;
}

.card-3 .price span {
  font-size: 24px;
  font-weight: 400;
}

.card-services ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.card-services>h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-top: 20px;
}

.card-services li {
  display: flex;
  gap: 14px;
}

.card-services li h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.card-services li p {
  font-size: 14px;
}

.max-w-p p {
  max-width: 270px;
}

/* explor section  */

.theam1 .bg-youtube::before {
  background-color: var(--secondery);
  border-radius: 15px;
}

.explore-sec .wrapper {
  padding-left: 60px;
}

.bg-youtube {
  position: relative;
  z-index: 1;
}

.bg-youtube::before {
  content: "";
  background-image: url(../images/explor-sec-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: 90%;
  width: 100%;
}

.explore-sec .title p {
  color: var(--whiteLight);
  max-width: 580px;
  margin: 15px 0;
}

.explore-sec .title btn-3 {
  font-weight: 500;
}

/* 3d swiper slider  */

.swiper-slider-sec {
  position: relative;
  height: 100%;
}

.swiper-slider-sec>.title p {
  max-width: 700px;
  margin: 15px auto 20px;
}

.swiper-slider-sec .swiper {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.swiper-slider-sec .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.swiper-slider-sec .swiper-slide .title,
.swiper-slider-sec .swiper-slide .bottom-overlayer::after {
  visibility: hidden;
  transition: 0.2s all ease;
  opacity: 0;
}

.swiper-slider-sec .swiper-slide.swiper-slide-active .title,
.swiper-slider-sec .swiper-slide.swiper-slide-active .bottom-overlayer::after {
  visibility: visible;
  opacity: 1;
  transition: 0.2s all ease;
}

.swiper-slider-sec .swiper-slide img {
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  height: 380px;
  width: 100%;
}

.swiper-slider-sec .swiper-slide {
  width: 350px;
}

.swiper-slide-active img {
  -webkit-box-shadow: 0px 0px 5px 6px rgba(244, 238, 255, 1);
  box-shadow: 0px 0px 5px 6px rgba(244, 238, 255, 1);
}

.swiper-slider-sec .swiper-slide .title {
  position: absolute;
  z-index: 0;
  bottom: 25px;
  right: 0;
  left: 0;
  height: max-content;
  width: 100%;
}

.swiper-slider-sec .swiper-slide .title :is(p, h4) {
  color: var(--white);
}

.swiper-slider-sec .swiper-slide .title p {
  font-size: 15px;
  color: #fafdff;
  margin-top: 10px;
}

/* .bottom-overlayer {
	position: relative;
	overflow: hidden;
} */

.bottom-overlayer::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--bottomLayer);
  border-radius: 10px;
}

/* social media plan  */

.theam1 .social-media-plan .card-3 .card-3-title h3 {
  color: var(--heading);
}

.theam1 .social-media-plan .price p {
  color: var(--secondery);
  margin-bottom: 30px;
}

.theam1 .social-media-plan .price span {
  color: #210b44;
}

.social-media-plan .card-services li p {
  font-size: 16px;
}

.prime-card {
  position: relative;
  z-index: 1;
}

.prime-card .inner-pop span {
  position: relative;
  z-index: 1;
  text-align: center;
  display: block;
  padding: 10px 0;
  color: var(--white);
  font-weight: bold;
}

.inner-pop {
  position: absolute;
  z-index: 1;
  top: -17px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
  width: 100%;
  height: max-content;
}

.prime-card .inner-pop span::before {
  content: "";
  background-image: url(../images/populer-card.webp);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.social-media-plan .card-3 {
  padding: 45px 30px 40px;
}

.social-media-plan .card-3 ul {
  margin-top: 30px;
}

.prime-card :is(p, li, h3, h4, span) {
  color: var(--white) !important;
}

.prime-card li p {
  color: var(--whiteLight) !important;
}

.prime-card {
  background-color: var(--secondery);
  border: 1px solid var(--secondery) !important;
}

/* about service section  */
.about-service-sec .text {
  display: flex;
  flex-grow: 1;
  align-items: end;
  justify-content: space-between;
}

.about-service-sec .inner-text {
  max-width: 650px;
}

.margin-t p {
  margin-top: 10px;
}

.faqs-section .accordion-button::after {
  background-image: url(../images/plus-icon.webp);
  background-size: 1rem;
  width: 1rem;
  height: 1rem;
}

.faqs-section .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.webp);
}

.faqs-section .accordion-item {
  border: unset !important;
  border-radius: 8px;
}

.faqs-section .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blur-layer {
  position: relative;
  z-index: 1;
}

.blur-layer::before {
  content: "";
  background-color: var(--pink);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  filter: blur(100px);
  opacity: 0.06;
  border-radius: 50%;
}

.explore-sec.blur-layer::before {
  left: unset;
  right: 0;
}

.pay-serivce.blur-layer::before,
.explore-sec.blur-layer::before {
  top: 40%;
}

.Simple-price-sec.blur-layer::before,
.faqs-section.blur-layer::before {
  bottom: 0;
  top: unset;
}

.accordion-button:not(.collapsed) {
  border-radius: 8px 8px 0 0 !important;
  background-color: transparent;
  box-shadow: unset;
}

.faqs-section .accordion-item .accordion-header .accordion-button {
  border-radius: 8px;
  font-size: 18px;
  color: var(--heading);
  font-weight: 600;
}

.faqs-section .accordion-item :is(.accordion-body, .accordion-button) {
  padding: 23px 30px;
}

.accordion-item :is(.accordion-body, .accordion-button):focus {
  box-shadow: unset;
}

.faqs-section .accordion-body {
  padding: 0 30px 15px !important;
}

.faqs-section .accordion-body p {
  border-top: 1px solid rgba(10, 9, 41, 0.25);
  padding-top: 20px;
}

/* footer  */
.footer {
  position: relative;
  z-index: 1;
}

/* footer wrapper  */

.footer .blue-bg {
  background-color: var(--green);
  bottom: 0;
  top: unset;
  height: 72%;
}

.footer .blue-bg .img img {
  transform: rotate(180deg);
  top: -2px;
}

.footer .wrapper .text .img img {
  max-width: 250px;
}

.footer .wrapper .text :where(p, li, a) {
  color: rgba(255, 255, 255, 1);
  margin-top: 24px;
  max-width: 309px;
}

.footer .wrapper .text a:hover {
  text-decoration: underline;
}

.footer .wrapper .text h2 {
  font-size: 18px;
  color: var(--white);
}

.footer .wrapper .div:nth-child(4) i {
  color: var(--white);
  margin-right: 7px;
}

/* .social-icon i {
	background-color: var(--white);
	border-radius: 50%;
	aspect-ratio: 1;
	width: 35px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: var(--black);
	font-size: 18px;
	border: 2px solid transparent;
	transition: 0.3s all ease;
	line-height: 0;
}

.social-icon a:not(:last-child) {
	margin-right: 23px;
}

.social-icon i:hover {
	background-color: var(--black);
	color: var(--white);
	border: 2px solid var(--white);
	transition: 0.3s all ease;
} */

.theam1 .contect-form {
  background-color: var(--secondery);
  padding: 40px 30px 30px;
  border-radius: 10px;
}

.title-white.mx-00 p {
  margin: 0;
}

.form-fields :is(input, textarea) {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(237, 242, 244, 0.6);
  border-radius: 5px;
  font-size: 18px;
  color: var(--white);
  width: 100%;
  padding: 12px 20px;
}

.form-fields :is(input[type=checkbox]) {
  width: auto;
  padding: 0.5rem;
}

.form-fields :is(input, textarea)::placeholder {
  color: var(--white);
}

.form-fields :is(input, textarea):focus {
  outline: unset;
  box-shadow: var(--focusBox);
  transition: var(--transition);
}

.font-20 i {
  font-size: 16px;
}

.footer .social-links .row>div i {
  margin-right: 10px;
}

.footer .social-links .row>div:nth-child(3) i {
  background-color: var(--white);
  border-radius: 50%;
  color: var(--green);
  width: 20px;
  font-size: 12px;
  aspect-ratio: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.copy-right {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding: 15px 10px 20px;
}

.copy-right p,
.copy-right a {
  color: var(--white);
}

.copy-right a:hover {
  text-decoration: underline;
}

/* social media posts page  */
.blue-bg {
  height: 70%;
}

.blue-bg.h-70 {
  height: 70%;
}

/* media posts page  */
.img-width .card-2 {
  padding: 15px;
}

.img-width .card-2 .img {
  height: 100%;
}

.img-width .card-2 img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
}

/* splide section  */
.splide-main.demo-shop-sec {
  padding: 135px 0;
}

.margin-100 {
  margin: 100px 0;
}

.splide-main.demo-shop-sec::before {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

/* deffirince-card section  */

.deffirince-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 15px;
  height: 100%;
}

.deffirince-card-green {
  background-color: var(--green);
}

.deffirince-card-green .check-icon .color-2 {
  fill: var(--white);
}

.deffirince-card-green h3 {
  color: var(--white);
}

.deffirince-card-green h3 img {
  max-width: 112px;
}

.deffirince-card-green p {
  color: rgba(255, 255, 255, 0.9);
}

/* Premium Social media tow col-section  */
.orange-li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 30px;
}

.orange-li li {
  display: flex;
  gap: 10px;
}

.theam1 .orange-span h3 span {
  color: var(--primary);
}

.media-2col-sec .text h3 {
  font-size: 36px;
  font-weight: bold;
}

.theam1 .media-2col-sec .text :is(p, li, h3) {
  color: var(--secondery);
}

.media-2col-sec .img img {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
  background-color: var(--white);
}

.p-10-20 p {
  margin: 10px 0 10px;
}

.green-bg-img {
  position: relative;
  z-index: 1;
}

.theam1 .green-bg-img::before {
  background-color: var(--green);
}

.green-bg-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border-radius: 0 16px 16px 0;
}

.media-2col-sec .wrapper>div:nth-child(3) .row {
  flex-direction: row-reverse;
}

.media-2col-sec .wrapper>div:nth-child(3) .row .green-bg-img::before {
  right: unset;
  left: -15px;
  border-radius: 10px 0 0 10px;
}

.padding-t-100 {
  padding-top: 100px;
}

/* serviices page  */
.theam1 .service-banner {
  padding: 180px 0 30px;
}

.hero-sec .wrapper>.inner-wrapper {
  max-width: 930px;
  margin: auto;
}

.short-wrapper {
  max-width: 1155px;
  margin: auto;
}

.service-2col-sec .inner-wrapper:nth-child(odd) .row {
  flex-direction: row-reverse;
}

.left-top::before {
  left: -15px !important;
  top: -15px !important;
  border-radius: 16px 0 0 16px !important;
}

.right-bottom::before {
  right: -15px !important;
  bottom: -15px !important;
  border-radius: 0px 16px 16px 0px !important;
}

.text.margin-inner p {
  margin: 15px 0 30px;
  font-size: 15px;
  max-width: 540px;
}

/* faqs page  */
.faq-li li::before {
  content: "\2022";
  color: var(--primary);
  line-height: 0.7;
  font-size: 30px;
}

.faq-li li {
  display: flex;
  gap: 7px;
}

.faqs-section .accordion-body :is(p, li, span) {
  color: var(--secondery);
  line-height: 1.5;
}

.theam1 .faqs-banner {
  padding: 160px 0 90px;
}

/* about page   */
.title-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 20px;
}

.title-card :is(p, h2) {
  color: var(--heading) !important;
  max-width: 505px;
}

/* Privacy policy   */
.privacy-policy-sec .text {
  margin-bottom: 40px;
}

.privacy-policy-sec .text :is(span, li, p, h3) {
  color: var(--secondery);
}

.privacy-policy-sec .text h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.privacy-policy-sec .text p {
  margin-bottom: 10px;
}

.privacy-policy-sec .text ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-lists span::before {
  content: "\2022";
  color: var(--primary);
  font-size: 25px;
  line-height: 1;
  vertical-align: middle;
  margin-right: 3px;
}

.inline-lists {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 10px;
}

.privacy-policy-sec .text:last-of-type {
  margin-bottom: 0;
}

.contect-sec form {
  box-shadow: var(--boxshadowPink);
}

.theam1 .contect-sec form {
  background-color: var(--white);
}

.contect-sec :is(input, textarea, .input-group-text) {
  border: 1px solid var(--green);
  color: var(--secondery);
}

.contect-sec :is(input, textarea)::placeholder {
  color: rgba(29, 53, 87, 0.6);
}

.theam1 .contect-sec .site-btn {
  min-width: 250px;
}

.margin-1-2 p {
  margin: 10px 0 10px;
}

.valide-pasword ul {
  padding-left: 15px;
  order: 1;
}

.valide-pasword li {
  color: var(--secondery);
  display: flex;
  align-items: center;
  position: relative;
}

.valide-pasword li::before {
  content: "";
  border: 2px solid rgba(14, 14, 15, 0.7);
  margin: auto;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -15px;
  bottom: 0;
  top: 0;
  background-color: transparent;
  border-radius: 50%;
}

/* .not-found  */
.not-found {
  height: 100vh;
  padding-bottom: 100px;
}

.not-found img {
  max-width: 360px;
  margin: auto;
}

.not-found .site-btn {
  max-width: 340px;
  margin: auto;
  width: 100%;
}

/* services 2 page  */
.template img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  object-position: top;
  box-shadow: var(--Boxshadow);
  -webkit-box-shadow: 0px 17px 53px 0px rgba(244, 238, 255, 1);
}

.user-detail-sec .bg-youtube::before {
  height: 100%;
}

.user-detail-sec .bg-youtube {
  padding: 40px 35px;
}

.user-detail-sec .title p {
  max-width: 829px;
  margin: 10px auto 30px;
}

.user-detail-sec .title p a {
  color: var(--primary);
  text-decoration: underline;
}

.user-detail-sec .user-detail .input-group {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}

.user-detail-sec .user-detail input {
  padding: 12px 10px 12px 0;
  background-color: rgba(237, 242, 244, 0.06);
  color: var(--white);
  border: unset;
  margin: unset !important;
}

.user-detail-sec .user-detail label {
  background-color: rgba(237, 242, 244, 0.06);
  border: unset;
  color: var(--white);
  padding: 12px 2px 12px 12px;
  font-weight: 500;
  font-size: 18px;
}

.user-detail-sec .user-detail input:focus {
  box-shadow: unset;
  border-color: var(--white);
  border: unset;
  outline: unset;
}

.templates-section .template {
  overflow: hidden;
  border-radius: 8px;
}

.templates-section .template:hover img {
  scale: 1.05;
  transition: var(--transition);
  opacity: 1;
}

.templates-section .row:hover img {
  transition: var(--transition);
  opacity: 1;
}

.templates-section .row:hover .template {
  box-shadow: var(--boxshadowPink);
  -webkit-box-shadow: 0px 17px 53px 0px rgba(244, 238, 255, 1);
}

.templates-section .row:hover .template:not(:hover) {
  box-shadow: unset;
}

.templates-section .row:hover img:not(:hover) {
  opacity: 0.6;
  filter: blur(1px);
}

.templates-section .template img {
  border-radius: unset;
  transition: var(--transition);
}

.margin-n-b {
  margin-bottom: -100px;
}

.margin-n-t {
  margin-top: -100px !important;
  padding-top: 100px !important;
}

.margin-n-t::before {
  transform: rotateX(180deg);
}

.margin-n-t::before,
.margin-n-b.splide-main::before {
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.small-card {
  background-color: var(--white);
  border-radius: 8px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 20px;
  padding: 30px 15px;
  transition: var(--transition);
}

.small-card:hover {
  transform: translateY(-5px);
}

.small-card h3 {
  font-size: 20px;
  color: var(--secondery);
  font-weight: 700;
}

.review-card {
  padding: 30px 40px 25px;
  background-color: var(--white);
  border-radius: 10px;
  height: 100%;
  filter: drop-shadow(4px 0px 10px rgba(29, 67, 90, 0.08));
  position: relative;
  z-index: 1;
}

.review-card::before {
  background-color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0px 0px 10px rgba(29, 67, 90, 0.08));
  content: "";
  width: 90%;
  height: 15px;
  position: absolute;
  z-index: -1;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 0 0 9px 9px;
}

.review-card .stars i {
  color: var(--primary);
}

.review-card p {
  margin: 25px 0;
}

.review-card .img img {
  aspect-ratio: 1;
  max-width: 80px;
  border-radius: 50%;
}

.review-card .clint {
  display: flex;
  gap: 20px;
  align-items: center;
}

.review-card .clint h3 {
  color: #0c3421;
  font-size: 25px;
  font-weight: 700;
}

.review-card .clint span {
  color: rgba(88, 92, 101, 0.5);
  font-size: 20px;
  font-weight: 600;
}

/* how to page  */

.how-to-banner .input-group {
  max-width: 550px;
  margin: auto;
}

.how-to-banner input {
  background-color: transparent;
  border: 1px solid rgba(237, 242, 244, 0.6);
  color: var(--white);
  padding: 13px 0px 13px 20px;
  background-color: rgba(255, 255, 255, 0.04);
  border-right: unset;
}

.how-to-banner input::placeholder {
  color: var(--white);
}

.how-to-banner input:focus {
  background-color: transparent;
  box-shadow: unset;
  border-color: rgba(237, 242, 244, 0.6);
  color: var(--white);
}

.how-to-banner .input-group span {
  min-width: 150px;
  justify-content: center;
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.finde-section .row {
  text-align: center;
}

.finde-section a {
  color: var(--heading);
  font-weight: 600;
}

.finde-section .row .video {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 16/9;
}

.finde-section .row .video img {
  height: 100%;
  object-fit: cover;
}

/* popups  */
.modal-dialog {
  max-width: 650px;
}

.modal-content {
  box-shadow: 0px 8px 32.85px 0px rgba(244, 238, 255, 1);
  -webkit-box-shadow: 0px 8px 32.85px 0px rgba(244, 238, 255, 1);
  border-radius: 19px;
}

.popup-content {
  padding: 40px 25px 25px;
  border-radius: 10px;
  text-align: center;
}

.popup-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--secondery);
}

.popup-content h2 span {
  color: var(--primary);
}

.popup-content>p {
  color: var(--secondery);
  margin-top: 10px;
}

.popup-content .input-field {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 25px 0 10px;
}

.forget-btn button {
  color: var(--green);
  background-color: transparent;
  padding: 0;
  border: unset;
  text-decoration: underline;
}

.popup-content .btn-3 {
  background-color: transparent;
  color: var(--primary);
}

.popup-content .btn-3:hover {
  color: var(--white);
}

.popup-content .btn-3::before {
  background-color: var(--primary);
}

.popup-content .site-btn {
  min-width: unset;
}

/* create-account popup  */

#create-account .modal-dialog {
  max-width: 1000px;
}

.site-wrapper-popup {
  max-width: 500px;
  margin-left: auto;
}

/* pricing card  */
.card-price.active {
  display: block;
}

.card-price {
  display: none;
}

/* page bilder  */
.page-bilder img {
  border-radius: 10px;
}

/* media query  */

@media (max-width: 1399px) {
  h2 {
    font-size: 38px;
  }
}

/* desktop  */
@media (max-width: 1199px) {

  h2,
  h1 {
    font-size: 38px;
  }

  .theam1 {
    margin: unset;
  }

  .header .navbar-nav {
    gap: 20px;
  }

  .header .navbar-nav .nav-link {
    font-size: 14px;
  }

  .header img {
    max-width: 150px;
  }

  .header .site-btn {
    min-width: 105px;
  }

  .padding-2-1 {
    margin-top: -16%;
  }

  .explore-sec .title h2 {
    font-size: 30px;
  }

  .bg-youtube::before {
    height: 90%;
  }

  .card-services li {
    gap: 10px;
  }

  .social-media-plan .card-3 {
    padding: 45px 20px 40px;
  }

  .card-services ul {
    gap: 15px;
  }

  .card-3 .price p {
    font-size: 30px;
  }

  .card-3 .card-3-title h3 {
    font-size: 20px;
  }

  .social-media-plan .card-services li p {
    font-size: 14px;
  }

  .footer .title h2 {
    font-size: 30px;
  }

  .footer .title p {
    font-size: 14px;
  }

  /* media page  */
  .hero-media-sec .title p br {
    display: none;
  }

  /* service 2  */

  .coming-feature .icon svg {
    width: 50px;
    height: 50px;
  }

  .small-card h3 {
    font-size: 18px;
  }
}

/* tablate  */
@media (max-width: 991px) {
  p {
    font-size: 14px;
  }

  h2 {
    font-size: 30px;
  }

  h1 br,
  h2 br {
    display: none;
  }

  .header .navbar-nav {
    align-items: start;
    margin-bottom: 10px !important;
  }

  .header .dropdown-toggle::after {
    border-color: var(--heading);
  }

  .navbar-collapse {
    position: fixed;
    z-index: 1049;
    top: 75px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: var(--whiteLight) !important;
    overflow: scroll;
  }

  .header .navbar-nav .nav-link {
    color: var(--heading);
  }

  .header .btn2 {
    color: var(--green);
    border: 1px solid var(--green);
  }

  .nav-item {
    width: 100%;
  }

  .header .dropdown-toggle::after {
    background-color: var(--green);
    border: unset;
    background-image: url(../images/arrow-down.webp);
    background-position: center center;
    background-size: 10px 10px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    border-radius: 50%;
    transform: rotate(-90deg);
    transition: var(--transition);
    position: static;
  }

  .header .navbar-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .dropdown:hover .dropdown-toggle::after {
    border: unset;
  }

  .navbar-nav .dropdown-menu {
    margin-top: 10px;
  }

  .header .dropdown-toggle.show::after {
    transform: rotate(0deg);
  }

  .theam1 .hero-sec {
    padding-top: 150px;
  }

  .hero-sec .orange-title h1 {
    font-size: 25px;
  }

  .theam1 .orange-title span {
    padding: 0 10px;
  }

  .theam1 .green-subtitle span {
    font-size: 14px;
  }

  .splide-main .title {
    padding: 0 10px;
  }

  .splide-main .title h2 {
    font-size: 28px;
  }

  .padding-2-1 {
    margin-top: -20%;
  }

  .coming-feature {
    padding-left: 10px;
    padding-right: 10px;
  }

  .explore-sec .title h2 {
    font-size: 20px;
  }

  .swiper-slider-sec .swiper-slide img {
    height: 340px;
  }

  .about-service-sec .inner-text {
    max-width: 370px;
  }

  .footer .title {
    text-align: center;
  }

  .footer .wrapper .text h2 {
    font-size: 16px;
  }

  .footer .wrapper .text :where(p, li, a) {
    margin-top: 10px;
  }

  .footer .wrapper .text .img img {
    max-width: 160px;
  }

  .footer .title h2 {
    font-size: 20px;
  }

  .footer .title h2 br {
    display: none;
  }

  .form-fields :is(input, textarea)::placeholder {
    font-size: 14px;
  }

  .faqs-section .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    gap: 10px;
  }

  .media-2col-sec .text h3 {
    font-size: 30px;
  }

  .orange-li {
    gap: 5px;
    margin: 15px 0 20px;
  }

  /* services page  */
  .service-2col-sec .text h3 {
    font-size: 25px;
  }

  .text.margin-inner p {
    font-size: 14px;
    margin: 10px 0 20px;
  }

  /* privecy policy */
  .padding-t-250 {
    padding-top: 150px;
  }

  .pay-serivce .title p br {
    display: none;
  }

  .margin-n-t::before,
  .margin-n-b.splide-main::before {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  }

  .review-card {
    padding: 20px;
  }

  .review-card .img img {
    max-width: 50px;
  }

  .review-card .clint h3 {
    font-size: 18px;
  }

  .review-card .clint span {
    font-size: 16px;
  }
}

/* mob  */
@media (max-width: 767px) {

  h1,
  h2 {
    font-size: 24px !important;
  }

  h1 br,
  h2 br {
    display: none;
  }

  p {
    font-size: 14px !important;
  }

  .navbar-collapse {
    top: 65px;
  }

  .padding-100 {
    padding: 25px 0;
  }

  .site-btn {
    padding: 8px 10px;
    font-size: 14px !important;
  }

  .theam1 .hero-sec {
    padding-bottom: 50px;
  }

  .header nav {
    padding: 10px 0;
  }

  .blue-bg {
    height: 90%;
  }

  .paly-btn-big::after {
    width: 70px;
    height: 70px;
    background-size: 15px 15px;
  }

  .header .navbar-nav {
    margin-bottom: 20px !important;
  }

  .hero-sec .video-2 {
    margin-top: 30px;
  }

  .hero-cards .card-img img {
    max-width: 30px;
  }

  .splide-main .title p,
  .pay-serivce .title p,
  .title.title-white p,
  .title.margin-p p {
    margin: 10px 0 20px;
  }

  .demo-shop-sec::before,
  .rotate-bg::before {
    clip-path: polygon(0 7%, 100% 0, 100% 95%, 0 100%) !important;
  }

  .padding-2-1 {
    padding: 100px 10px 50px;
  }

  .plan-select .form-check-input {
    width: 70px;
    height: 29px;
    background-size: 38%;
  }

  .card-3 .price p {
    font-size: 30px !important;
  }

  .card-3 {
    padding: 20px;
  }

  .explore-sec .wrapper {
    padding: 20px;
    padding-bottom: 0;
  }

  .explore-sec .img img {
    display: none;
  }

  .bg-youtube::before {
    height: 100%;
  }

  .social-media-plan .card-3 {
    padding: 30px 15px;
  }

  .theam1 .social-media-plan .price p {
    margin-bottom: 20px;
  }

  .prime-card {
    padding-top: 40px !important;
  }

  .card-3 .card-3-title h3 {
    font-size: 25px;
  }

  .about-service-sec .text {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .faqs-section .accordion-item :is(.accordion-body, .accordion-button) {
    padding: 20px 10px;
    font-size: 14px !important;
    gap: 10px;
  }

  .faqs-section .accordion-body {
    padding: 10px !important;
  }

  .faqs-section .accordion-button::after {
    background-size: 14px;
  }

  .faqs-section .accordion-body {
    padding-top: 0 !important;
  }

  .btn-3 {
    width: 100%;
  }

  .contect-form .title p {
    margin-bottom: 10px;
  }

  .footer .title h2 {
    font-size: 20px !important;
  }

  .footer .wrapper .text h2 {
    font-size: 20px !important;
  }

  .theam1 .contect-form {
    padding: 25px 15px;
  }

  .card-2 {
    padding: 15px;
  }

  .demo-shop-sec {
    padding: 50px 0;
  }

  .hero-sec .text p {
    margin: 12px 0;
  }

  .hero-sec .cards {
    gap: 12px;
  }

  .hero-sec .video-2 {
    margin-top: 48px;
  }

  .theam1 .orange-title a,
  .theam1 .orange-title button {
    font-size: 14px;
    padding: 12px 20px;
    width: 100%;
  }

  .theam1 .orange-title {
    width: 100%;
  }

  .splide__arrow--prev {
    left: 0;
  }

  .splide__arrow--next {
    right: 0;
  }

  .footer .wrapper .text :where(p, li, a) {
    font-size: 14px;
  }

  .blue-bg.h-70 {
    height: 80%;
  }

  .swiper-slider-sec .swiper-slide {
    width: 300px;
  }

  /* media page  */
  .splide-main.demo-shop-sec {
    padding: 50px 0;
    margin: 20px 0;
  }

  .splide-main.demo-shop-sec::before {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%) !important;
  }

  .green-bg-img::before {
    bottom: -8px;
    right: -8px;
  }

  .media-2col-sec .wrapper>div:nth-child(3) .row .green-bg-img::before {
    right: unset;
    left: -8px;
  }

  .media-2col-sec .row {
    flex-direction: column-reverse !important;
  }

  .padding-t-100 {
    padding-top: 50px;
  }

  .media-2col-sec .text h3 {
    font-size: 25px !important;
  }

  .orange-li {
    margin: 15px 0;
    gap: 8px;
  }

  /* services page  */
  .theam1 .service-banner {
    padding: 120px 0 10px;
  }

  .left-top::before {
    left: -8px !important;
    top: -8px !important;
  }

  /* faqs pages */
  .faqs-section .accordion-body :is(p, li, span) {
    font-size: 14px;
  }

  .faq-li li {
    align-items: unset;
  }

  .faq-li li::before {
    line-height: 0.7;
  }

  .padding-t-250 {
    padding-top: 75px;
  }

  .privacy-policy-sec .text h3 {
    font-size: 20px;
  }

  .privacy-policy-sec .text {
    margin-bottom: 30px;
  }

  .theam1 .contect-sec .site-btn {
    width: 100%;
  }

  .form-fields :is(input, textarea) {
    padding: 8px 10px;
  }

  .pt-100 {
    padding-top: 100px !important;
  }

  /* popup  */
  .popup-content {
    padding: 25px 15px 20px;
  }

  .popup-content h2 {
    font-size: 20px !important;
  }

  .popup-content .input-field {
    margin-top: 15px;
  }

  .popup-content .forget-btn {
    font-size: 14px;
  }

  .valide-pasword li::before {
    bottom: unset;
    top: 8px;
  }

  .valide-pasword li {
    font-size: 14px;
  }

  /* service 2 pae  */
  .user-detail-sec .bg-youtube {
    padding: 20px 15px;
  }

  .margin-n-t::before {
    clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%) !important;
  }

  .margin-n-t {
    padding-top: 50px !important;
  }

  .margin-n-b.splide-main::before {
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%) !important;
  }

  .splide-main.demo-shop-sec {
    margin-bottom: -50px !important;
  }

  .review-section .title h2 {
    font-size: 20px !important;
  }

  .user-detail-sec .user-detail label {
    font-size: 15px;
  }

  .user-detail-sec .user-detail input {
    font-size: 14px;
  }

  .small-card h3 br {
    display: none;
  }

  /* how to page  */
  .how-to-banner .input-group span {
    min-width: unset;
    font-size: 14px;
  }

  .how-to-banner .input-group input {
    padding: 10px;
    font-size: 14px;
  }

  .Simple-price-sec {
    margin-top: 50px;
  }
}

@media (max-width: 2000px) and (min-width: 1440px) {
  .theam1 {
    margin: auto;
  }
}

.toast-container .toast-header {
  color: #fff;
}