/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Days+One&display=swap"); */
@import url(component.min.css);
@import url(layout.min.css);
:root {
  --primary: #2d353f;
  --theme-color: #b9509f;
  --black: #000;
  --white: #fff;
  --text-color: #828282;
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

::selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.8);
}

html,
body {
  height: 100%;
}

html {
  font-size: 18px;
  line-height: 1;
}

body {
  background: var(--white);
  color: #030303;
  font-family: "Encode Sans Semi Expanded", sans-serif;
  font-size: 1rem;
  line-height: 1;
  overflow-x: hidden;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  text-decoration: none;
}

p {
  font-size: 1rem;
  font-family: "Encode Sans Semi Expanded", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.75rem;
}

.container {
  position: relative;
  z-index: 2;
}

main {
  height: 100%;
}

section {
  padding: 3rem 0;
  position: relative;
}

.text-white {
  color: var(--white);
}

.text-pink {
  color: var(--theme-color);
}

.text-dark {
  color: var(--primary);
}

.pinkGradient {
  background-image: linear-gradient(to bottom, #b9509f, #b9509f, #b9509f, #8f3d7b, #721f5e);
}

.tag {
  padding: 5px 10px;
  color: var(--white);
  background: var(--theme-color);
  border-radius: 6px;
  text-transform: capitalize;
  font-weight: 900;
}

.stokeText {
  font-size: 11rem;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
  color: transparent;
  background: transparent;
  margin: 0;
}

.tickCircle {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 4px;
}

/* Begin: Heading Style #1 */
.headingStyleOne {
  position: relative;
}

.headingStyleOne h2 {
  /* font-size: 3.88rem; */
  font-weight: 900;
  color: var(--black);
  margin: 0;
}

.headingStyleOne h4 {
  position: relative;
  color: var(--theme-color);
  font-size: 3.4375rem;
  margin: 0;
  font-weight: 600;
}

/* END: Heading Style #1 */
/* Begin: Heading Style #2 */
.headingStyleTwo span {
  background: var(--theme-color);
  color: var(--white);
  font-size: 1.67rem;
  padding: 0 1.5rem;
  border-radius: 4px;
}

.headingStyleTwo h2 {
  font-size: 4.33rem;
  font-weight: 900;
  margin: 0.5rem 0 0;
}

.headingStyleTwo :is(.left, .right) {
  position: absolute;
  width: 7rem;
}

.headingStyleTwo {
  position: relative;
}

.headingStyleTwo .left {
  left: 30%;
  top: -2rem;
}

.headingStyleTwo .right {
  top: 0;
  right: 10%;
}

/* END: Heading Style #2 */
/* Begin: Heading Style #3 */
.headingStyleThree {
  position: relative;
}

.headingStyleThree h2 {
  /* font-size: 2.6rem; */
  font-weight: 900;
  color: var(--primary);
  margin: 0;
}

.headingStyleThree .stokeText {
  margin: 0 0 -2.5rem;
  font-size: 4rem;
}

/* END: Heading Style #3 */
/* Begin: Main Banner CSS */
.mainBanner {
  background: url(../images/banner/1.webp) top left/cover no-repeat;
  display: flex;
  align-items: center;
  /* height: calc(100% - 7rem); */
  /* min-height: 36rem; */
  min-height: calc(100vh - 126.86px);
  padding: 0;
  /* z-index: 10; */
}

.mainBanner .themeBtn1 {
  position: relative;
}

.mainBanner .themeBtn1:before {
  content: "";
  width: 2.77rem;
  height: 2.77rem;
  position: absolute;
  top: -50%;
  left: -15%;
  background: url(../images/mix/75off.webp) bottom right/100% no-repeat;
  animation: disc ease infinite 0.5s;
  filter: grayscale(100);
}

@keyframes disc {
  0% {
    filter: hue-rotate(90deg);
  }
  50% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(90deg);
  }
}
.mainBanner {
  /* height: calc(100% - 4rem); */
  padding-block: 2rem !important;
}

.mainBanner .bannerContnt {
  position: relative;
}

.mainBanner .bannerContnt :is(h2, h4, p) {
  color: var(--white);
}

.mainBanner .bannerContnt h2 {
  /* font-size: 2.25rem; */
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.mainBanner .bannerContnt h4 {
  font-weight: 500;
  line-height: 1.3;
}

.editingBanner .bannerContnt h4 {
  color: #4fe6ef;
}

.mainBanner .bannerContnt p {
  font-size: 1rem;
  width: 75%;
  margin: 0 0 3rem;
}

.editingBanner.lpbanner h5 {
  color: var(--white);
}

.editingBanner.lpbanner h2 {
  font-weight: 700;
  margin-bottom: 2rem;
}

.editingBanner.lpbanner h2 span {
  color: var(--theme-color);
}

.mainBanner figure {
  filter: drop-shadow(0 12px 2rem rgba(0, 0, 0, 0.6));
  margin-bottom: -10rem;
  width: 25rem;
}

.bannerBook {
  position: absolute;
  right: 3rem;
  bottom: 0;
}

.mainBanner .btnSec {
  margin-top: 3rem;
}

.listBulletStyle {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 !important;
}

.listBulletStyle li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white);
}

.listBulletStyle li i {
  color: var(--theme-color);
  position: relative;
  top: 0px;
}

.btnSec {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.animationImg {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

.bookBanner {
  position: absolute;
  bottom: -3rem;
  width: 12rem;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.stepBanner {
  position: relative;
}

.stepBanner {
  background: url(../images/banner/3.webp) center/cover no-repeat;
  padding: 1rem 0 3.5rem;
  display: flex;
  align-items: center;
}

.stepBanner * {
  color: var(--white);
}

.stepBanner p {
  font-size: 1.33rem;
}

.stepBanner .bookBannerOne {
  position: absolute;
  left: 10%;
  top: 40%;
  width: 5rem;
}

.stepBanner .bookBannerTwo {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 15rem;
  z-index: 1;
}

.stepBanner .bookBannerThree {
  position: absolute;
  left: 8%;
  bottom: 5%;
  width: 5rem;
  z-index: 1;
}

.servicesForm h2 {
  font-size: 1.65rem;
  background: #fff;
  position: absolute;
  top: -1rem;
  padding: 0 11px;
}

/* logo Section CSS Start */
.logoSec {
  padding: 1rem 0;
}

.logoSlider {
  border-left: 1px solid rgba(0, 0, 0, 0.1882352941);
  position: relative;
}

.logoSlider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #ffffff, transparent);
  width: 20%;
  z-index: 1;
}

.logoSec h6 {
  font-size: 1.35rem;
  text-transform: uppercase;
  color: #2d2d2d;
}

.logoSlider {
  border-left: 1px solid rgba(0, 0, 0, 0.1882352941);
}

.logoSlider .slick-track {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logoSlider .slick-track img {
  width: 5rem;
  margin: 0 auto;
}

/* Potfolio Section CSS Start */
.portfolioSec {
  padding: 2rem 0 2rem;
  overflow: hidden;
}

.portfolioSec .stokeText {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
}

.portfolioSec .headingStyleOne h2 {
  /*margin-top: 4rem;*/
  font-size: 2.25rem;
}

.portfolioSec .headingStyleOne h4 {
  font-size: 1.76rem;
}

.portfolioSec .headingStyleOne {
  text-align: center;
}

/*.portSlider.slick-slider .slick-list,*/
.portSlider.slick-slider .slick-track {
  margin: 3rem 0 3rem;
}

.portSlider img {
  filter: drop-shadow(12px 13px 6px rgba(0, 0, 0, 0.3));
  width: 100%;
  padding: 0 22px;
  transition: all 0.5s ease;
}

.portSlider .slick-dots {
  bottom: -0.5rem;
}

.portfolioSec .animationImg {
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 10rem;
}

.portTag {
  background: url(../images/bg/star.webp) top right/100% no-repeat;
  width: 7rem;
  height: 7rem;
  padding: 30px 20px;
  position: absolute !important;
  z-index: 1;
  right: -11px;
  top: -2rem;
}

.portTag p {
  font-size: 12px;
  text-align: center;
  margin: 0;
  color: var(--white);
}

.portSlider div {
  position: relative;
  transition: all 0.5s ease;
}

.portFolioImg:hover {
  transform: scale(1.05);
}

.portSlider {
  transition: all 0.5s ease;
}

/* Services Section CSS Start */
.serviceSec {
  background: url(../images/bg/bg4.webp) top left/cover fixed no-repeat;
}

.serviceSec h2 {
  color: var(--white);
}

.serviceSec h4 {
  font-size: 1.5rem;
  font-weight: 400;
}

.serviceSec .headingStyleThree .stokeText {
  font-size: 4rem;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3882352941);
  margin-bottom: -1rem;
}

.serviceSec h2 span {
  color: var(--theme-color);
}

.serbox {
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
}

.serbox:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(45, 53, 63, 0.9019607843);
  z-index: -1;
}

.serbox:after {
  content: "";
  position: absolute;
  inset: -1px -1px 0 -2px;
  border-radius: 10px;
  background: linear-gradient(180deg, #b9509f 0%, transparent 70%);
  z-index: -2;
}

.serbox h4 {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.serbox h6 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
}

.serbox .tickCircle i {
  font-size: 1rem;
  color: var(--white);
  transition: all 0.5s ease;
}

.serbox:hover .tickCircle {
  background-image: linear-gradient(to bottom, #9cffaf, #7ad58a, #58ad67, #378646, #126126);
}

.serbox p {
  color: var(--white);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.serbox:hover {
  background: var(--theme-color);
}

.serbox ul li {
  color: var(--white);
  padding: 8px 0;
  font-size: 1rem;
  line-height: 1.3;
  position: relative;
}

.serbox ul {
  position: relative;
  padding-left: 1.25rem;
}

.serbox ul li::before {
  content: "";
  position: absolute;
  border-left: 1px solid var(--white);
  height: 100%;
  top: 0;
  bottom: 0;
  left: -17px;
  z-index: 1;
}

.serbox ul li:first-child::before {
  top: 20px;
}

.serbox ul li:last-child::before {
  top: calc(-100% + 20px);
}

.serbox ul li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -20px;
  top: 14px;
}

/* .serContactSec {
  background: var(--primary) url(../images/bg/bg7.webp) bottom left/60% fixed
    no-repeat;
} */
.serContactSec h2 {
  color: var(--white);
}

/* Project Section CSS Start */
.projectSec ul li h6 .count,
.projectSec ul li h6 {
  font-size: 2rem;
  color: var(--theme-color);
  font-weight: 700;
  margin: 10px 0;
  line-height: 1;
}

.projectSec ul li h6 .count {
  margin: 0;
}

.projectSec ul li p {
  color: var(--black);
  font-weight: 500;
  display: block;
  margin-bottom: 0;
}

.projectSec ul h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.projectSec ul li {
  text-align: center;
  padding: 0.4rem;
}

.projectSec ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1rem 0;
  gap: 1.5rem;
}

.projectSec .themeBtn1 {
  font-weight: 600;
}

/* Contact Form section css Start */
.ghostBox {
  padding: 1rem;
  border-radius: 0;
  border: 2px solid #ffffff;
  box-shadow: 0 13px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  position: relative;
  transition: all 0.8s ease;
  background-color: var(--primary);
}

/* .ghostBox:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: #2d353fe6;
    z-index: -1;
}

.ghostBox:after {
    content: '';
    position: absolute;
    inset: -1px -1px 0 -2px;
    border-radius: 10px;
    background: linear-gradient(180deg, #D81159 0%, transparent 70%);
    z-index: -2;
} */
.ghostBox:hover {
  background: var(--white);
}

.ghostBox .icon {
  background: var(--white);
  width: 3.77rem;
  height: 3.77rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ghostBox:hover .icon {
  background: none;
}

.ghostBox .content {
  width: calc(100% - 4.77rem);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ghostBox .content * {
  margin: 0;
}

.ghostBox .content span.h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
}

.ghostBox .content p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--primary);
}

.ghostBox .content a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  display: inline-block;
  margin-top: 1rem;
}

.ghostBox:hover .content a {
  opacity: 1;
}

.ghostBox .content :is(span.h4, p) {
  color: var(--white);
}

.ghostBox:hover .content :is(span.h4, p) {
  color: var(--black);
}

.headingStyleOne.signHead h4,
.headingStyleOne.signHead h2 {
  font-size: 2rem;
  color: var(--white);
  line-height: 1.4;
}

.signupForm {
  background: var(--primary);
  padding: 2rem;
  position: relative;
  z-index: 0;
  /* overflow: hidden; */
  border-radius: 8px;
  margin: 0 2rem;
  max-width: 25rem;
}

.signupForm input {
  width: 100%;
  height: 3rem;
  padding-left: 1rem;
  border-radius: 8px;
  /* margin: 0 0 10px; */
  border: 1px solid rgba(255, 255, 255, 0.568627451);
  background: #292f38;
  color: var(--white);
}

.signupForm button:not(.iti__selected-country) {
  width: 100%;
  margin-top: 0;
  font-size: 1.35rem;
  border-radius: 8px;
  padding: 0.8rem 2.5rem;
}

.signupForm h4 {
  font-size: 1.25rem !important;
  position: relative;
}

.signupForm h4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  left: -31px;
  right: 50%;
  z-index: -1;
}

.form-control:focus,
.accordion-button:focus {
  border: 1px solid var(--theme-color);
  box-shadow: none;
}

.signupForm form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.serContactSec .animationImg {
  position: absolute;
  right: 2rem;
  top: -4rem;
  z-index: 0;
}

.contactForm h5 {
  font-size: 4rem !important;
  margin: 0 0 -2rem !important;
}

.contactForm p {
  font-size: 1.45rem;
}

.serContactSec .themeBtn2 {
  padding: 1.2rem 3.5rem;
  /*font-size: 1.55rem;*/
  font-weight: 700;
  margin-top: 1rem;
}

.serContactSec .themeBtn2:hover {
  border-color: var(--white);
}

/* process Section CSS Start */
.processSec {
  background: url(../images/bg/bg5.webp) bottom left/cover fixed no-repeat;
  padding-bottom: 4rem;
  margin-bottom: 0;
}

.processSec h4 {
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
}

.processSec h4::before {
  z-index: -1;
}

.processSec h2 {
  color: var(--white);
}

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

.processBox {
  background: rgba(58, 67, 78, 0.7294117647);
  padding: 2rem 1rem 1rem;
  border-radius: 10px;
  border: 1px solid #626569;
  transition: all 0.5s ease;
  /* margin: 1rem 0; */
  position: relative;
  z-index: 11;
  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.2705882353);
  height: 100%;
}

.processBox:hover {
  background: var(--theme-color);
}

.processImg {
  position: absolute;
  right: 6rem;
  z-index: 0;
  margin: 0;
  bottom: 0;
  width: 29rem;
}

.processLink h5 {
  background: var(--primary);
  display: inline-block;
  padding: 5px 4rem 5px 10px;
  border: 2px solid var(--theme-color);
  color: var(--white);
  border-radius: 8px;
}

.processLink {
  position: absolute;
  top: -1rem;
  right: 2rem;
}

.processBox p {
  color: var(--white);
  padding-top: 1rem;
  line-height: 1.5;
}

.processBox:hover img {
  filter: brightness(20);
}

.processSec .bookStep {
  position: absolute;
  right: 2rem;
  z-index: 1;
  bottom: -9rem;
}

/* Books Section CSS Start */
.booksSec {
  background: url(../images/bg/bg2.webp) bottom right/cover fixed no-repeat;
}

.booksSec h5 {
  color: var(--primary);
  font-weight: 600;
  /* font-size: 2rem; */
}

.booksSec h2 {
  /* font-size: 3.25rem; */
}

.bookBox .overlay {
  border-radius: 5px;
  position: absolute;
  bottom: -7.5rem;
  text-align: start;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.bookBox:hover .overlay {
  background: linear-gradient(3deg, #b9509f, transparent);
  inset: 0;
}

.bookhead {
  position: absolute;
  color: white;
  bottom: 1rem;
  right: 1rem;
  opacity: 1;
  transition: all 0.5s ease;
}

.bookBox:hover .bookhead {
  opacity: 0;
}

.bookBox {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 1.5rem 0.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: var(--black);
  transition: all 0.5s ease;
}

.bookBox:hover {
  box-shadow: none;
}

.bookBox h4 {
  /* font-size: 2rem; */
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.overlay * {
  color: var(--white);
}

.overlay p {
  font-size: 1rem;
  transition: all 0.5s ease;
  margin: 0;
  min-height: 5.25rem;
}

.bookBox:hover .overlay p {
  display: block;
  visibility: visible;
  opacity: 1;
}

.bookBox img {
  width: 100%;
  filter: grayscale(1) brightness(0.5);
  transition: ease all 0.5s;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.5;
}

.bookBox:hover img {
  filter: grayscale(0) brightness(0.8);
}

/* Cta Section CSS Start */
.ctaSec {
  background: url(../images/bg/bg3.webp) bottom right/cover fixed no-repeat;
  padding-bottom: 0;
  margin-bottom: 3rem;
  padding-top: 1.4rem;
}

.ctaContnt {
  text-align: center;
}

.ctaContnt h6 {
  font-size: 1.66rem;
  font-weight: 500;
  color: var(--white);
}

.ctaContnt p,
.ctaContnt h2 {
  color: var(--white);
  width: 60%;
  margin: 1rem auto;
}

.ctaContnt h2 {
  font-weight: 400;
  /* font-size: 3rem; */
}

.numSec ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.numSec ul li a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.numSec {
  display: inline-block;
  padding: 1.5rem 5rem;
  border-radius: 10px;
  margin-bottom: -3rem;
  margin-top: 1rem;
}

/* Begin: Testimonial CSS */
.testimonialSec .headingStyleThree h2 {
  /* font-size: 4.72rem; */
}

.testimonialSec .headingStyleThree .stokeText {
  margin: 0 0 -2.5rem;
}

.testiThumb {
  position: relative;
  background: var(--white);
  border: 2px solid #f0f0f0;
  border-left: 1rem solid #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05), 0 -8px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
  margin: 2rem 1rem;
  min-height: 30rem;
  text-align: center;
  transition: ease all 0.5s;
}

.testiThumb:hover,
.slick-current + .slick-active .testiThumb {
  border: 2px solid var(--theme-color);
  border-left: 1rem solid var(--theme-color);
  transform: scale(1.05);
}

.testiThumb .quote {
  position: absolute;
  top: -1.5rem;
  right: 3rem;
}

.testiThumb .quote img {
  position: relative;
  filter: brightness(0.1) contrast(0.5);
  transition: ease all 0.5s;
}

.slick-current + .slick-active .testiThumb .quote img {
  filter: brightness(1) contrast(1);
}

.testiThumb .img img {
  border: 8px solid #ffffff;
  border-radius: 100px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  margin: 0 auto 2rem;
}

.testiThumb h4 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.testiThumb p {
  margin: 0;
  font-weight: 300;
  line-height: 1.7;
}

/* END: Testimonial CSS */
/* Begin: FAQ's CSS */
.accordionStyle {
  margin-top: 2rem;
}

.accordionStyle .accordion-item {
  box-shadow: none;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.168627451);
  margin-top: 1rem;
}

.accordionStyle .accordion-item .accordion-button {
  border-radius: 1rem;
  box-shadow: none;
  background: none;
  padding: 1.5rem;
  color: var(--black);
  font-weight: 600;
  font-size: 1.125rem;
}

.accordionStyle .accordion-item .accordion-button::after {
  transform: rotate(0deg);
  color: #000;
}

.accordionStyle .accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(0);
  transform: rotate(540deg);
}

.accordionStyle .accordion-item .accordion-button[aria-expanded=true]:hover {
  background: var(--white);
  color: var(--black);
}

.accordionStyle .accordion-item .accordion-button:hover {
  background: var(--theme-color);
  color: var(--white);
  border-radius: 1rem;
}

.accordionStyle .accordion-body {
  border-top: 1px solid #ffffff;
  padding: 1.5rem;
  border-radius: 0 0 1rem 1rem;
  transition: ease all 0.5s;
  background-image: linear-gradient(to right, #b9509f, #b9509f, #b9509f, #af298e, #8f3378);
}

.accordionStyle .show .accordion-body {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.accordionStyle .accordion-body p {
  margin: 0;
  line-height: 1.6;
  color: var(--white);
}

.accordionStyle .accordion-body p + p {
  margin-top: 1rem;
}

.accordionStyle .accordion-item:not(:first-of-type) {
  border-top: 1px solid #c1c1c1;
}

/* END: FAQ's CSS */
/* Partners Section CSS Start */
.companyLogoSec {
  padding: 2rem 0;
}

.companyLogoSec .headShadow {
  padding-left: 6rem;
}

.companyLogoSec .headShadow .stokeText {
  font-size: 4rem;
  margin-bottom: -2rem;
}

/* Team Section CSS Start */
.teamSec {
  background: url(../images/bg/bg6.webp) top left/cover fixed no-repeat;
}

.teamSec p,
.teamSec h2 {
  color: var(--white);
}

.teamSec .nav-tabs {
  justify-content: center;
  margin-bottom: 1rem;
  border: none;
  gap: 10px;
}

.teamSec .nav-tabs .nav-link {
  background: var(--white);
  border-radius: 5px;
  padding: 1rem 1.5rem;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
}

.teamSec .nav-tabs .nav-item.show .nav-link,
.teamSec .nav-tabs .nav-link.active {
  background: var(--theme-color);
  color: var(--white);
}

.teamBox {
  position: relative;
  margin: 1rem 0;
}

.teamBox .overlay-text {
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 0;
  text-align: center;
}

.teamBox .overlay-text h4 {
  font-size: 1.35rem;
}

.teamBox .overlay-text:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--theme-color), transparent);
  z-index: 0;
}

.teamBox .overlay-text:after {
  content: "";
  position: absolute;
  inset: 3px 3px 0 3px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.teamBox .overlay-text * {
  color: var(--white);
  margin: 0;
  position: relative;
  z-index: 2;
}

.teamSec h5 {
  color: var(--white);
  font-weight: 400;
}

.teamBox img {
  width: 100%;
}

/* Clients Circle CSS */
.contactForm {
  background: url(../images/bg/bg7.webp) top right/60% fixed no-repeat;
}

.logoForm {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: end;
  gap: 3rem;
  width: 70%;
  margin: 0 auto;
}

.logoForm .logo {
  width: 9rem;
  height: 9rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1411764706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

.logoForm .logo2 {
  width: 13rem;
  height: 13rem;
}

.logoForm .logo5 {
  margin-bottom: 8rem;
  margin-left: -2rem;
}

.logoForm .logo4 {
  width: 13rem;
  height: 13rem;
  margin-bottom: 0;
}

.logoForm .logo4 img {
  width: 7rem;
  margin: 0 auto;
}

.logoForm .logo1 {
  margin-bottom: -3rem;
  margin-left: -2rem;
}

.logoForm .logo6 {
  margin-bottom: 2rem;
}

.logoForm .logo3 {
  margin-bottom: -3rem;
}

.logoForm .logo:hover {
  transform: scale(1.09);
}

/* partner Section CSS Start */
.partnersSlider li img {
  width: 10rem;
}

.partnersSliderreverse {
  transform: scale(-1);
}

.partnersSliderreverse img {
  transform: scale(-1);
}

.companyLogoSec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(86deg, white, transparent);
  z-index: 1;
  width: 15%;
  height: 75%;
  margin-top: auto;
}

.companyLogoSec::after {
  content: "";
  position: absolute;
  background: linear-gradient(273deg, white, transparent);
  z-index: 1;
  width: 15%;
  height: 75%;
  right: 0;
  margin-top: auto;
  bottom: 0;
}

.companyLogoSec ul li {
  background: var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  padding: 1rem;
  margin: 2rem 5px;
  transition: all 0.5s ease;
}

.companyLogoSec .slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.26);
}

.companyLogoSec .headingStyleThree h2 {
  /* font-size: 3.6rem; */
}

.companyLogoSec li img {
  margin: 0 auto;
}

.contactBook {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 14rem;
}

/* Begin: Step 1 CSS */
.discountStrip {
  background: var(--theme-color);
  color: var(--white);
  text-align: center;
  padding: 10px 1rem;
  margin: -3.5rem 0 3rem;
  border-radius: 10px;
}

.discountStrip > span {
  font-size: 1.33rem;
}

.discountStrip h2 {
  margin: 10px 0 0;
  line-height: 1;
}

.chooseService {
  position: relative;
  padding: 0 0 5rem;
}

.chooseService .serviceTwo {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 6rem;
}

.chooseService .serviceOne {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 12rem;
}

.chooseService .serviceThree {
  position: absolute;
  left: 68%;
  bottom: 15%;
  z-index: 0;
}

.servicesForm {
  background: var(--white);
  border: 1px solid #d4d4d4;
  border-radius: 1.5rem;
  box-shadow: 0 1.125rem 4.44rem rgba(216, 17, 89, 0.08);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.servicesList {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(130, 130, 130, 0.3098039216);
  border-radius: 15px;
}

.servicesForm p {
  margin: 0;
}

.inputGroup {
  margin-top: 1rem;
}

.questionList {
  display: flex;
  flex-direction: column;
}

.servicesList li,
.questionList li {
  position: relative;
}

.servicesList li {
  border-bottom: 1px solid rgba(130, 130, 130, 0.3098039216);
}

.servicesList li:first-child {
  /* border-radius: 15px 15px 0 0; */
}

.servicesList li:last-child {
  border-radius: 0 0 15px 15px;
  border-bottom: 0;
}

.servicesList li input,
.questionList li input {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.servicesList .checkBoxStyle {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 2rem;
  justify-content: space-between;
}

.servicesList li:last-child .checkBoxStyle {
  border-bottom: 0;
}

.servicesList .checkBoxStyle label {
  font-size: 0.9rem;
  font-weight: 700;
}

.servicesList .checkBoxStyle i {
  font-size: 1.25rem;
  color: #d6d6d6;
}

.servicesList li input:checked + .checkBoxStyle i {
  color: var(--theme-color);
}

.servicesForm .form-control,
.inputGroup .form-control {
  font-size: 0.9rem;
  height: 3rem;
  border-radius: 10px;
}

.inputGroup .form-control {
  margin: 10px 0;
}

.phone-container .iti--show-flags {
  width: 100%;
  border: 1px solid #ced4da;
  font-size: 0.9rem;
  height: 3rem;
  border-radius: 10px;
}

.chooseService .phone-container .iti--show-flags {
  margin-top: 10px;
}

.chooseService .phone-container .iti__selected-dial-code {
  color: rgba(0, 0, 0, 0.6);
}

.phone-container .phone1 {
  border-radius: 10px;
  border: 0;
  height: 100%;
  width: 100%;
}

.phone-container .phone1:focus-visible {
  outline: 0;
}

/* END: Step 1 CSS */
/* Begin: Step 2 CSS */
.stepTwo {
  padding-top: 5rem;
}

.questionList li {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 3rem;
  padding: 1rem 0;
  border-bottom: 1px solid #d4d4d4;
}

.questionList li:last-child {
  border-bottom: 0;
}

.questionList li > label {
  width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}

.questionList .radioStyle {
  position: relative;
}

.questionList .radioStyle label {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.questionList .radioStyle label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #eeeeee;
  border: 1px solid #d7d7d7;
  border-radius: 100px;
  margin-right: 10px;
}

.questionList .radioStyle input:checked + label:before {
  border: 5px solid #d81159;
}

.servicesForm .themeBtn2 {
  font-size: 1.125rem;
  border-radius: 8px;
  text-transform: uppercase;
  margin-top: 1.25rem;
  padding: 0.8rem 2.5rem;
}

.stepTwo .servicesForm .themeBtn2 {
  width: 35%;
}

/* END: Step 2 CSS */
.stepBanner .headingStyleThree .stokeText {
  color: transparent;
  font-size: 6rem;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.stepBanner .headingStyleThree h2 {
  font-size: 5rem;
  color: var(--theme-color);
}

.stepBanner .headingStyleThree h6 {
  margin-top: 10px;
  font-weight: 400;
}

.stepBanner .headingStyleThree h6 span {
  display: block;
  font-weight: 700;
}

.congbanner {
  background: url(../images/banner/4.webp) top right/cover no-repeat;
  padding: 5rem 0;
}

.congsContnt {
  margin: 8rem auto -2rem;
}

.congsContnt p a {
  font-weight: 700;
}

.congsContnt p {
  font-size: 20px;
  line-height: 1.3;
}

.congbanner .bookBannerTwo {
  top: 3rem;
}

.congbanner .bookBannerThree {
  bottom: 15rem;
}

.congbanner .bookBannerOne {
  top: 10%;
}

.congsContnt p a:hover {
  color: var(--theme-color);
}

/* Inner Pages Start */
.innerbanner {
  /* height: calc(100% - 7.5rem); */
  /* min-height: 40rem; */
  padding-bottom: 0;
  overflow: hidden;
}

.bannerContnt h6 {
  font-size: 1.5625rem;
  color: var(--white);
  margin: 0;
}

.innerbanner .banner-girl {
  width: 32rem;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  z-index: 2;
}

.innerbanner .bannerContnt p {
  width: 100%;
  margin: 1.5rem 0;
}

/* .innerbanner .bookBanner {
    top: 12%;
    left: 8rem;
} */
.innerbanner .banner-2 {
  /* margin-left: -16rem;
  margin-bottom: -11rem; */
}

.bannerBook {
  right: -65%;
}

.abtContnt h4 {
  /*font-size: 2.85rem;*/
  text-align: center;
}

.abtContnt .stokeText {
  font-size: 5.5rem;
  -webkit-text-stroke: 1px rgba(216, 17, 89, 0.5215686275);
  margin-top: -4rem;
  text-align: center;
}

.abtContnt p {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: var(--black);
}

.archiveSec {
  padding: 3rem 0;
  background: url(../images/bg/bg8.webp) top center/cover no-repeat;
}

.archiveSec .headingStyleThree h2,
.archiveSec p {
  color: var(--white);
}

.countInner {
  background: var(--primary);
  padding: 2rem;
}

.countInner h6 {
  color: var(--white);
  position: relative;
  z-index: 1;
  padding: 5px;
}

.countInner h6::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  left: -50%;
  z-index: -1;
  right: 85%;
}

.countInner ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 12rem;
}

.countInner ul li h5 {
  font-size: 4.0625rem;
  color: var(--theme-color);
  margin: 0;
}

.countInner ul li h5 span {
  color: var(--white);
}

.countInner ul li p {
  font-size: 1.275rem;
  color: var(--white);
}

.listStyledBook,
.innerbanner .bannerContnt ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.listStyledBook li,
.innerbanner .bannerContnt ul li {
  flex: 0 0 47%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.listStyledBook li img,
.innerbanner .bannerContnt ul li img {
  padding-right: 10px;
  width: 40px;
}

.listStyledBook:before,
.innerbanner .bannerContnt ul::before {
  content: "";
  position: absolute;
  inset: 0 -30rem 0 0;
  background: rgba(56, 56, 56, 0.568627451);
  z-index: -1;
  border: 1px solid #434343;
}

.editingSec {
  background: url(../images/bg/bg9.webp) top center/cover no-repeat;
  margin-top: 1rem;
  /*padding-bottom: 8rem;*/
}

.editingSec .headingStyleThree h2,
.editingSec p {
  color: var(--white);
}

.editbox p,
.editbox * {
  color: var(--black);
}

.editbox {
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: 10px;
  /*margin: 1rem 0;*/
  transition: all 0.5s ease;
  height: 100%;
}

.editbox h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  gap: 2rem;
}

.editbox p strong {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.editbox:hover {
  background: var(--theme-color);
  transform: scale(1.05);
}

.editbox:hover * {
  color: var(--white);
}

.editbox:hover img {
  filter: invert(1);
}

.editbox p {
  font-size: 15px;
}

.editingSec .bannerBook {
  right: 2rem;
  top: 40%;
}

.editingSec .bannerBook2 {
  position: absolute;
  bottom: 0;
}

.ctaInner .ctaContnt h2 {
  width: 100%;
}

.bookInner {
  overflow: visible;
}

.bookInner .banner-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35rem;
  margin: 0;
  z-index: 2;
}

.editInner {
  background: url(../images/bg/bg10.webp) top center/cover no-repeat;
}

.editInner .headingStyleOne h2 {
  color: var(--white);
  font-size: 3.75rem;
  margin-bottom: 2rem;
}

.chooseService .accordion-button:not(.collapsed) {
  color: var(--black);
  background: none;
  box-shadow: none;
  padding: 14px 0.75rem;
}

.chooseService .accordion-button:not(.collapsed)::after {
  filter: brightness(0.5);
}

.chooseService .accordion-item:last-of-type {
  border-radius: 15px;
}

.chooseService .accordion-item:first-of-type .accordion-button {
  font-size: 1.35rem;
  font-weight: 600;
  padding: 14px 0.75rem;
  border-radius: 15px;
}

.selectpicker {
  position: relative;
}

.selectpicker:before {
  content: "\f054";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Font Awesome 5 Pro";
  transform: rotate(90deg);
  font-size: 1.25rem;
  font-weight: 400;
}

.bookInner2 {
  background: url(..//images/banner/1.webp) bottom left/cover no-repeat;
}

.innerbanner .banner-4 {
  position: absolute;
  bottom: -2rem;
  right: 0;
}

.blogBox {
  position: relative;
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.5s ease;
  margin: 1rem 0;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.0941176471);
}

.blogBox .blogLogo {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.blogBox h3 {
  color: var(--black);
  font-size: 1.25rem;
  transition: all 0.5s ease;
}

.blogBox figure {
  margin: 0;
  position: relative;
}

.blogContnt {
  padding: 1.25rem;
  overflow: hidden;
}

.blogBox:hover {
  transform: scale(1.05);
}

.blogBox:hover {
  background: var(--theme-color);
}

.blogBox:hover h3 {
  color: var(--white);
}

.contactbanner {
  overflow: hidden;
}

.contactbanner .banner-5 {
  position: absolute;
  bottom: -4rem;
  width: auto;
  right: 0;
}

.contactbanner ul li {
  color: var(--white);
  padding: 6px 0;
}

.contactbanner ul {
  margin: 1.5rem 0;
}

.contactbanner ul li img {
  padding-right: 10px;
  width: 25px;
}

.contactbanner p {
  margin: 10px 0 !important;
}

.pinSec {
  background: linear-gradient(to right, #b9509f, #b9509f, #b9509f, #af298e, #8f3378);
  padding: 3rem 0;
}

.pinSec ul {
  display: flex;
  justify-content: space-between;
  gap: 1rem 0;
}

.pinSec ul li,
.pinSec ul li a {
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.2;
}

.pinSec ul li i {
  font-size: 2rem;
}

.pinSec .animationImg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10rem;
}

.audiGirl {
  margin-top: -15rem;
}

.edit-girl {
  margin-top: 15rem;
  background: var(--theme-color);
}

.edit-girl .bannerBook {
  top: 10%;
}

.edit-girl .editbox:hover {
  border: 1px solid var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3882352941);
}

.editInner .headingStyleThree p {
  line-height: 1.4;
  margin-top: 1rem;
}

.designBook {
  padding: 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  border: 2px solid var(--theme-color);
  min-height: 12rem;
}

.designBook img {
  position: absolute;
  right: 0;
  top: -1rem;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3176470588));
  width: 10rem;
}

.autherImg {
  position: relative;
  margin-bottom: 6rem;
}

.autherImg::before {
  content: "";
  position: absolute;
  inset: 8rem 0 0 0;
  background: var(--theme-color);
  z-index: -1;
  height: 80%;
  border-radius: 10px;
}

.auther-girl.headingStyleThree h2 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}

.serviceSec .headingStyleThree h4 {
  color: var(--white);
}

.teamSec .tab-pane {
  position: relative;
  left: 10rem;
  transition: ease all 0.2s;
}

.teamSec .tab-pane.show {
  left: 0;
}

.mainBanner .signupForm {
  margin: 0 0 0 8rem;
}

.servicesList li {
  border-bottom: 1px solid rgba(130, 130, 130, 0.3098039216);
}

.stepTwo .discountStrip {
  margin: -8.5rem 0 3rem;
}

/* Services Pages CSS Start */
.servicesBanner ul::before {
  inset: 0 -100% 0 0;
  background: rgba(94, 94, 94, 0.6784313725);
}

.servicesInner h3 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--theme-color);
  display: none;
}

.servicesInner h4 {
  /*font-size: 3.15rem;*/
}

.servicesInner p {
  line-height: 1.5;
  margin-top: 1rem;
  font-weight: 500;
}

.servicesBanner .banner-girl {
  margin-left: -9rem;
  width: 45rem;
}

.mainBanner .wiki-writing {
  margin: 0 0 0 0;
  width: 100%;
  position: relative;
  right: -3rem;
}

.innerbanner .banner-2,
.innerbanner .banner-3 {
  width: 40rem;
}

.servicesBanner {
  overflow: hidden;
}

.wikiImg img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
}

.pinSec ul li {
  display: flex;
  align-items: center;
  flex: 0 0 33%;
  border-right: 1px solid rgba(255, 255, 255, 0.4196078431);
  justify-content: center;
}

.pinSec ul li:last-child {
  border-right: 0;
}

.ctaSec ul li:nth-child(2) {
  display: none;
}

.wikiImg .portFolioImg {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2784313725);
  margin: 2rem 10px;
  transition: all 0.5s ease;
}

.thankyouBanner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  position: relative;
}

.thank-hdr {
  background-color: rgba(0, 0, 0, 0.6588235294);
  padding: 50px 50px;
}

.thank-hdr h1 {
  font-size: 54px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 57px;
  text-align: center;
  color: #fff;
  margin-bottom: 13px;
}

.thank-hdr p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 0;
  margin-bottom: 10px;
}

.thank-hdr a {
  color: #fff;
  font-size: 1rem;
  padding: 1rem;
}

.thankyouBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4196078431);
}

.contactBoxs .accordionStyle,
.signupForm .accordionStyle {
  margin: 10px 0 0;
}

.contactBoxs .contactBoxs.accordionStyle .accordion-item,
.signupForm .accordionStyle .accordion-item {
  margin: 10px 0 0 0;
  border-radius: 10px;
  background: #292f38;
  border: 1px solid rgba(255, 255, 255, 0.568627451);
}

.contactBoxs .accordionStyle .accordion-item .accordion-button,
.signupForm .accordionStyle .accordion-item .accordion-button {
  margin: 0;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: transparent;
  color: rgba(216, 216, 216, 0.5019607843);
  font-weight: 300;
}

.contactBoxs .accordionStyle .accordion-item .accordion-button:not(.collapsed)::after,
.signupForm .accordionStyle .accordion-item .accordion-button:not(.collapsed)::after {
  filter: grayscale(1);
}

.contactBoxs .accordionStyle .accordion-item .accordion-button[aria-expanded=true]:hover,
.signupForm .accordionStyle .accordion-item .accordion-button[aria-expanded=true]:hover {
  color: rgba(216, 216, 216, 0.5019607843);
  background: transparent;
}

.contactBoxs .accordionStyle .accordion-item .accordion-button:hover,
.signupForm .accordionStyle .accordion-item .accordion-button:hover {
  background: transparent;
}

.contactBoxs .accordionStyle .show .accordion-body,
.signupForm .accordionStyle .show .accordion-body {
  background: transparent;
  border: none;
  padding-top: 0;
}

.contactBoxs .servicesList li,
.signupForm .servicesList li {
  flex: 0 0 100%;
  margin: 0;
}

.contactBoxs .servicesList .checkBoxStyle label,
.signupForm .servicesList .checkBoxStyle label {
  color: #fff;
}

.contactBoxs .accordionStyle .accordion-body,
.signupForm .accordionStyle .accordion-body {
  background: none;
  border: none;
}

.contactBoxs .accordionStyle .accordion-item .accordion-button::after,
.signupForm .accordionStyle .accordion-item .accordion-button::after {
  filter: brightness(8.5);
}

.contactBoxs .form-control:focus,
.contactBoxs .accordion-button:focus,
.signupForm .form-control:focus,
.signupForm .accordion-button:focus {
  border: none;
}

.contactBoxs .accordionStyle .accordion-item,
.signupForm .accordionStyle .accordion-item {
  background: #292f38;
  border-radius: 8px;
  margin: 0 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.568627451);
}

footer.contactBoxs .accordionStyle .accordion-item {
  background: #2c3b4c;
}

footer.contactBoxs .accordionStyle {
  margin: 5px 0;
}

footer.contactBoxs .accordionStyle .accordion-item .accordion-button {
  padding: 12px 1rem;
}

.phone-container .iti__selected-dial-code {
  color: rgba(255, 255, 255, 0.3333333333);
}

footer .phone-container .iti--show-flags {
  margin: 3px 0;
}

footer #footerForm .themeBtn2 {
  padding: 1rem 2rem;
  margin: 0;
}

.sticky .signupForm h2 {
  margin-bottom: 0;
  font-size: 0;
}

.innerbanner .bannerPubImg {
  width: 38rem;
}

.editingBanner ul::before {
  display: none;
}

/*Begin: Pricing Package Style*/
.pricingSec {
  background: url(../images/banner/1.webp) center/cover fixed no-repeat;
  padding: 1rem 0;
}

.pkgTitle {
  background: rgba(45, 53, 63, 0.7882352941);
  box-shadow: -2px 2px 10px #d81159;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  text-align: center;
}

.pkgTitle h2 {
  color: var(--white);
  margin: 0;
  line-height: 1;
  font-size: 2rem;
}

.pricingPkgStyle {
  margin-bottom: 3rem;
}

.pricingPkgStyle .head {
  background: var(--white);
  padding: 0.5rem;
  border-radius: 1rem 1rem 0 0;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-bottom: 0;
}

.pricingPkgStyle .head h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0;
}

.pricingPkgStyle .head h2 {
  font-size: 3rem;
  margin: 0;
  line-height: 1;
  color: var(--theme-color);
}

.pricingPkgStyle .detail {
  background: var(--primary);
  padding: 1rem 1rem;
  height: 16rem;
  overflow-y: auto;
  border-left: 2px solid var(--theme-color);
  border-right: 2px solid var(--theme-color);
}

.pricingPkgStyle .btnSec {
  background: var(--primary);
  padding: 1rem;
  border-radius: 0 0 1rem 1rem;
  justify-content: center;
  border: 1px solid var(--theme-color);
  border-top: 1px solid #484848;
}

.pricingPkgStyle .btnSec .themeBtn1 {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.brands-images img {
  /* width: 130px; */
  width: 20%;
}

.brands-images {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

@media screen and (width >= 992px) {
  .brands-images {
    justify-content: start;
  }
}
/*END: Pricing Package Style*/
/* virtual-select */
.vscomp-value {
  opacity: 1 !important;
}

.signupForm input {
  border-radius: 10px;
}

.signupForm .iti__dropdown-content {
  background: #2c343e;
}

.signupForm .iti__country {
  color: white;
}

.signupForm input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.signupForm input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.signupForm input:focus {
  background: inherit;
  border: 1px solid white !important;
}

.signupForm .virtual-select,
footer .virtual-select,
.default-select {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.virtual-select .vscomp-wrapper {
  font-family: inherit !important;
}

.virtual-select .vscomp-option-text {
  line-height: 1.5;
}

.vscomp-option.focused {
  background: rgba(255, 255, 255, 0.3) !important;
}

.vscomp-option.selected {
  background: var(--theme-color) !important;
}

.signupForm .virtual-select .vscomp-toggle-button,
footer .virtual-select .vscomp-toggle-button {
  width: 100%;
  height: 3rem;
  padding-left: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.568627451);
  background: #292f38;
  color: var(--white);
}

.signupForm .virtual-select .vscomp-arrow::after,
footer .virtual-select .vscomp-arrow::after {
  border: 1px solid rgba(0, 0, 0, 0);
  border-bottom-color: white;
  border-right-color: white;
}

.signupForm .virtual-select .vscomp-dropbox,
footer .virtual-select .vscomp-dropbox {
  background: #292f38;
  color: white;
}

.signupForm .virtual-select .vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after,
footer .virtual-select .vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
  border-color: white;
  border-left-color: rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0);
}

.vscomp-wrapper .checkbox-icon.checked::after {
  border-color: var(--theme-color);
  border-left-color: rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0);
}

footer .virtual-select.banner-select .vscomp-toggle-button,
footer .virtual-select .vscomp-dropbox,
footer .signupForm input {
  background: #2c3b4c;
}

footer .signupForm input .iti__dropdown-content {
  background: #292f38;
  color: var(--white);
}

.form-error {
  border-color: red !important;
}
.form-error .vscomp-toggle-button {
  border-color: red !important;
}
.form-error .vscomp-toggle-button .vscomp-wrapper:not(.has-value) .vscomp-value {
  opacity: 1 !important;
}
.form-error .vscomp-arrow::after {
  border-bottom-color: red;
  border-right-color: red;
}
.form-error .vscomp-value {
  color: red !important;
}
.form-error::-moz-placeholder {
  color: red !important;
}
.form-error::placeholder {
  color: red !important;
}

.form-error-label {
  color: red !important;
  font-weight: bold;
}

/* default-select */
.iti {
  width: 100%;
}

.simple-select {
  padding: clamp(7px, 2vw, 13px);
  border-radius: 10px;
  width: 100%;
  border: 1px solid #ddd;
}

.default-select {
  width: 100%;
  max-width: inherit !important;
  border-radius: 10px;
}

.default-select .vscomp-toggle-button {
  padding: clamp(7px, 2vw, 13px);
  border-radius: 10px;
}

.default-select .vscomp-option.focused {
  background-color: #ccc !important;
}

.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.industry__partner {
  /* padding: 50px; */
  /* border: 1px solid var(--theme-color); */
  border-radius: 30px;
  height: 479px;
}

.industry__partner img {
  width: 190px;
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}

.text__theme {
  color: var(--theme-color);
}

.partnership__amazon__bg {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.div__matter {
  border: 1px solid var(--theme-color);
  border-top: 4px solid var(--theme-color);
  border-right: 6px solid var(--theme-color);
  border-radius: 10px;
  display: flex;
  gap: 0px 10px;
  padding: 40px 20px;
  align-items: center;
  flex-direction: column;
}

.div__matter .icon__div {
  width: 60px;
  height: 60px;
  background-color: var(--theme-color);
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry__partner p {
  font-size: 25px;
}

/* .form-control:focus {
  color: #fff;
} */
.mainImages {
  gap: 23px;
}

@media (max-width: 991px) {
  .industry__partner {
    padding: 20px;
    /* border: 1px solid var(--theme-color); */
    border-radius: 30px;
    height: 100%;
  }
  .partnership__amazon__bg {
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.vscomp-toggle-button {
  padding: 14px !important;
  border-radius: 10px !important;
}

.vscomp-ele {
  max-width: initial !important;
}

.topBookSec,
.partner {
  background-color: #ebccd6;
}

.topBookSec .shadowImage img {
  margin-top: -30px;
  /* max-width: 100% */
}

.topBookSec img:hover {
  transform: scale(1.1);
  overflow: hidden;
}

.topBookSec .mainImages img {
  max-width: 235px;
  width: 100%;
  height: 300px;
  margin-top: -88px;
  transition: 0.5s;
}

.mainImages img:nth-child(2),
.mainImages img:nth-child(4) {
  height: 350px;
}

.ourTrustedSec p {
  font-size: 25px;
}

.mainImages img:nth-child(3) {
  height: 380px;
  max-width: 261px;
}

.swiperLogoSec .swiper-slide img {
  max-width: 230px;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1799px) {
  .topBookSec .shadowImage img {
    margin-top: -23px;
  }
  .mainImages {
    gap: 13px;
  }
}
@media only screen and (max-width: 1399px) {
  .topBookSec .mainImages img {
    max-width: 137px;
    width: 100%;
    height: 200px;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: auto;
    width: 100%;
    max-width: 160px;
  }
  .mainImages img:nth-child(3) {
    height: auto;
    width: 100%;
    max-width: 186px;
  }
  .topBookSec .shadowImage img {
    margin-top: -21px;
  }
  .industry__partner p {
    font-size: 20px;
  }
  .ourTrustedSec p {
    font-size: 20px;
  }
  .industry__partner {
    height: 392px;
  }
}
@media only screen and (max-width: 1200px) {
  .topBookSec .mainImages img {
    max-width: 145px;
    width: 100%;
    height: auto;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: auto;
    width: 100%;
    max-width: 163px;
  }
  .mainImages img:nth-child(3) {
    height: auto;
    width: 100%;
    max-width: 179px;
  }
  .topBookSec .shadowImage img {
    margin-top: -17px;
  }
  .ourTrustedSec p {
    font-size: 18px;
  }
  .industry__partner p {
    font-size: 18px;
  }
  .industry__partner {
    height: 34 2px;
  }
}
@media only screen and (max-width: 991px) {
  .topBookSec .mainImages img {
    max-width: 97px;
    width: 100%;
    height: auto;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: auto;
    width: 100%;
    max-width: 119px;
  }
  .mainImages img:nth-child(3) {
    height: auto;
    width: 100%;
    max-width: 137px;
  }
  .topBookSec .shadowImage img {
    margin-top: -15px;
  }
  .industry__partner p {
    font-size: 18px;
  }
  .ourTrustedSec p {
    font-size: 18px;
  }
  .mainImages {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .topBookSec .mainImages img {
    max-width: 77px;
    width: 100%;
    height: auto;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: auto;
    width: 100%;
    max-width: 88px;
  }
  .mainImages img:nth-child(3) {
    height: auto;
    width: 100%;
    max-width: 101px;
  }
  .industry__partner {
    height: 373px;
  }
}
@media only screen and (max-width: 512px) {
  .topBookSec .mainImages img {
    max-width: 69px;
    width: 100%;
    height: auto;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: auto;
    width: 100%;
    max-width: 81px;
  }
  .topBookSec .mainImages img {
    margin-top: -48px;
  }
  .mainImages img:nth-child(3) {
    height: auto;
    width: 100%;
    max-width: 93px;
  }
  .industry__partner {
    height: 334px;
  }
}
@media only screen and (max-width: 502px) {
  /* .topBookSec .mainImages img {
    max-width: 70px;
    width: 100%;
    height: 100px;
  }

  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: 110px;
    width: 100%;


  }

  .mainImages img:nth-child(3) {
    height: 130px;
    width: 100%;
    max-width: 100px;


  } */
  .swiperLogoSec .swiper-slide img {
    max-width: 130px;
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 462px) {
  .topBookSec .mainImages img {
    max-width: 52px;
    width: 100%;
    height: auto;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: auto;
    width: 100%;
    max-width: 68px;
  }
  .mainImages img:nth-child(3) {
    height: auto;
    width: 100%;
    max-width: 85px;
  }
}
@media only screen and (max-width: 407px) {
  .topBookSec .mainImages img {
    max-width: 60px;
    width: 100%;
    height: 80px;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: 90px;
    width: 100%;
  }
  .mainImages img:nth-child(3) {
    height: 110px;
    width: 100%;
    max-width: 80px;
  }
  .servicesBanner .bannerContnt .newBannerBtn .btn-first {
    width: 100%;
    margin-bottom: 10px;
  }
  .servicesBanner .bannerContnt .newBannerBtn .btn-sec {
    width: 100%;
  }
  .mainImages {
    gap: 3px;
  }
}
@media only screen and (max-width: 357px) {
  .topBookSec .mainImages img {
    max-width: 47px;
    width: 100%;
    height: auto;
  }
  .mainImages img:nth-child(2),
  .mainImages img:nth-child(4) {
    height: auto;
    width: 100%;
    max-width: 56px;
  }
  .mainImages img:nth-child(3) {
    height: auto;
    width: 100%;
    max-width: 68px;
  }
  .mainImages {
    gap: 5px;
  }
}
.servicesBanner .bannerContnt .newBannerBtn .btn-first img {
  max-width: 20px;
}

.servicesBanner .bannerContnt .newBannerBtn .btn-sec img {
  max-width: 20px;
}

.servicesBanner .bannerContnt .newBannerBtn .btn-first {
  border: 1px solid #fff;
  color: #fff;
  border: 2px solid;
  border-radius: 10px;
  -o-border-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
     border-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
}

.servicesBanner .bannerContnt .newBannerBtn .btn-first:hover {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 0%;
  background-color: #d81159;
  -o-border-image: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
     border-image: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
  transition: 0.8s;
}

.servicesBanner .bannerContnt .newBannerBtn .btn-sec {
  border: 1px solid #fff;
  color: #fff;
  background-color: #d81159;
  border: 2px solid;
  border-radius: 0%;
  -o-border-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
     border-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
}

.servicesBanner .bannerContnt .newBannerBtn .btn-sec:hover {
  border: 2px solid #fff;
  color: #fff;
  background-color: var(--primary);
  -o-border-image: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
     border-image: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
  transition: 0.8s;
}

.swiperLogoSec {
  background-color: #ebebeb;
}

.ourTrustedSec h1,
h5 {
  color: var(--theme-color);
}

.industry__partner {
  position: relative;
  background-color: white;
}

.industry__partner::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(184deg, rgb(216, 17, 89) 0%, rgba(255, 255, 255, 0) 91%);
}

.about-the-policy ul {
  list-style-type: disc;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}/*# sourceMappingURL=custom.min.css.map */