/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
@import url(root.css);
/*!StellerNav css!*/
@import url(stellarnav.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@400;700&display=swap");
/*! Google Fonts !*/
/*! Global styles !*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: var(--ff-poppins);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  background: white;
  min-height: 100%;
}

p {
  margin: 0px;
  padding: 0px 0 24px;
  font-family: var(--ff-poppins);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}
p:last-child {
  padding: 0;
}

h1,
h2 {
  margin: 0px 0px 20px;
  padding: 0px;
  font-family: "Syne", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 78px;
  line-height: 94px;
  color: #ffffff;
}
h1 span.text-stroke,
h2 span.text-stroke {
  -webkit-text-fill-color: transparent;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  display: block;
}

h3 {
  margin: 0px 0px 20px;
  padding: 0px;
  font-size: 16px;
  line-height: 32px;
}

h4 {
  margin: 0px 0px 20px;
  padding: 0px;
  font-size: 16px;
  line-height: 32px;
}

h5 {
  margin: 0px 0px 20px;
  padding: 0px;
  font-size: 16px;
  line-height: 32px;
  line-height: normal;
}

h6 {
  margin: 0px 0px 20px;
  padding: 0px;
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
}
h6.subheading {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

.btn {
  position: relative;
  margin: 0;
  padding: 16px 36px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ffffff;
  border-radius: 12px;
  font-family: "Syne";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn::before {
  content: "";
  background-color: #7a3bed;
  inset: auto;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: -100%;
  width: 100%;
  height: 100%;
  left: -100%;
  transform: scale(1.1);
  transition: all 1.9s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
}
.btn:hover {
  color: #fff !important;
}
.btn:hover::before {
  top: -20px;
  width: 100%;
  height: 100%;
  left: 12px;
  transform: scale(2.3);
}
.btn.bgwhite {
  background: white;
  color: #7a3bed;
}
.btn.violet {
  background: #7a3bed;
  color: #fff;
  border: none;
}
.btn.violet:hover {
  color: #7a3bed !important;
}
.btn.violet::before {
  background: #fff;
}

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

a {
  display: inline-block;
  text-decoration: none;
}

/* form css */
.form-control::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder {
  color: rgb(85, 85, 85);
  opacity: 1;
  font-size: var(--font-size-m);
}

.form-control::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=search]::-moz-input-placeholder {
  color: rgb(85, 85, 85);
  opacity: 1;
}

.form-control:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=search]::-ms-input-placeholder {
  color: rgb(85, 85, 85);
  opacity: 1;
}

.form-control:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=date]:-moz-placeholder,
input[type=search]::-moz-input-placeholder {
  color: rgb(85, 85, 85);
  opacity: 1;
}

.form-control,
input[type=text],
input[type=tel],
input[type=email],
textarea,
input[type=password],
input[type=number],
select,
input[type=search] {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  color: rgb(85, 85, 85);
  height: auto;
  background: white;
  padding: 13px 15px;
  margin-bottom: 20px;
  outline: none;
  border-radius: 4px;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

a {
  display: inline-block;
  text-decoration: none;
}

section h1,
section h2 {
  margin-bottom: 60px;
}

.faq_box {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}

.faq_item {
  text-align: left;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0px;
  padding: 41px 26px;
  box-shadow: 13px 37px 32px rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  transition: all 0.3s ease-in-out;
}
.faq_item.active {
  box-shadow: 13px 37px 32px rgba(0, 0, 0, 0.11);
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.faq_item:last-child {
  border-bottom: none;
}

.faq_hd {
  margin-bottom: 0px;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq_hd.active h3 {
  color: #7a3bed;
}
.faq_hd.active h3 img {
  filter: none;
}

.faq_hd h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  /* purple */
  color: #000;
  margin-bottom: 0;
}
.faq_hd h3 img {
  filter: brightness(0) invert(0);
}

.faq_cont {
  display: none;
  padding: 12px 0px 0px 0px;
}

.faq_cont p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  padding-bottom: 12px;
  color: #000000;
}

.faq_cont a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  text-decoration-line: underline;
  text-transform: capitalize;
  /* blck */
  color: #000000;
}

.twentytwenty-container img {
  width: 100%;
}

.twentytwenty-wrapper {
  background: black;
  padding: 20px;
  padding-bottom: 0;
}

.twentytwenty-handle {
  background: url(../images/draggable.svg) no-repeat 0 0;
  background-size: cover !important;
}
.twentytwenty-handle span {
  opacity: 0 !important;
}

.twentytwenty-handle {
  transform: scale(1.77);
  border: none;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
}

.swiper-slide {
  text-align: center;
  font-size: 33px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 50px;
  color: black;
}

header .navWrap ul li.has-sub > a:after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: inherit;
  content: "";
  vertical-align: middle;
  margin-left: 0.625rem;
  margin-top: 0;
  position: static;
  top: 41%;
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  margin: 0;
}

header .navWrap ul li.has-sub > a:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f107";
  vertical-align: middle;
  margin-left: 0.625rem;
  margin-top: 0;
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
}

header {
  position: absolute;
  left: 0;
  right: 0;
  padding: 34px 0;
  z-index: 1;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo a {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: uppercase;
  /* purple */
  color: #7a3bed;
}
header .navWrap ul {
  display: flex;
  gap: 62px;
}
header .navWrap ul li {
  transition: all 1.9s cubic-bezier(0.075, 0.82, 0.165, 1);
}
header .navWrap ul li ul {
  display: none;
  background: #fff;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
header .navWrap ul li ul li {
  border-bottom: 1px solid #ece7e7;
}
header .navWrap ul li ul li:hover a {
  background: #7a3bed;
  color: white !important;
}
header .navWrap ul li ul li a {
  font-style: normal;
  background: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #000000 !important;
  padding: 14px 20px;
}
header .navWrap ul li ul li a:after {
  display: none;
}
header .navWrap ul li ul li:last-child {
  border-bottom: none;
}
header .navWrap ul li a {
  font-family: "Syne", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff !important;
  position: relative;
  transition: all 1.9s cubic-bezier(0.075, 0.82, 0.165, 1);
  padding-left: 0;
  padding-right: 0;
}
header .navWrap ul li a:after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(122, 59, 237, 0);
  left: 100%;
  right: 100%;
  bottom: 0;
  transition: all 1.9s cubic-bezier(0.075, 0.82, 0.165, 1);
}
header .navWrap ul li:hover a, header .navWrap ul li.current-menu-item a {
  color: white;
}
header .navWrap ul li:hover a:after, header .navWrap ul li.current-menu-item a:after {
  background: rgb(122, 59, 237);
  left: 0;
  right: 0;
}

.banner {
  position: relative;
}
.banner > img {
  width: 100%;
}
.banner .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
}
.banner .container h2 {
  max-width: 724px;
  margin-bottom: 28px;
}
.banner .container p {
  max-width: 575px;
  margin-bottom: 40px;
}
.banner .container h6 {
  margin-bottom: 0;
}

.residential {
  padding: 80px 0;
  position: relative;
}
.residential .resimg {
  position: absolute;
  width: 40vw;
  height: 80vh;
  right: 0;
  top: 80px;
  bottom: 80px;
  padding: 0;
}
.residential h1 {
  color: black;
}
.residential h1 span.text-stroke {
  -webkit-text-stroke-color: #000;
}
.residential h6 {
  color: #7a3bed;
}

.comm {
  background-color: #000;
  position: relative;
}
.comm:before {
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #7a3bed;
  position: absolute;
  width: 50vh;
  z-index: 0;
}
.comm .container {
  position: relative;
}
.comm .comm-txt {
  background-color: #000;
  padding-top: 46px;
}
.comm .comm-txt h2 {
  color: #ffffff;
  margin-bottom: 53px;
}
.comm .comm-txt h2 span.text-stroke {
  -webkit-text-stroke-color: #fff;
}
.comm .faq_cont p,
.comm .faq_cont a {
  color: white;
}
.comm .faq_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17) !important;
}
.comm .faq_hd h3 {
  color: white;
}
.comm .faq_hd h3 img {
  filter: brightness(0) invert(1);
}
.comm .faq_item.active {
  box-shadow: 23px 37px 32px rgba(54, 54, 54, 0.19);
}
.comm .faq_box:before {
  display: none;
}

.indus {
  padding: 80px 0;
  position: relative;
}
.indus .resimg {
  position: absolute;
  width: 42vw;
  height: 80vh;
  left: 0;
  top: 80px;
  bottom: 80px;
  padding: 0;
  border-radius: 0 12px 12px 0px;
}
.indus h2 {
  color: black;
}
.indus h2 span.text-stroke {
  -webkit-text-stroke-color: #000;
}
.indus h6 {
  color: #7a3bed;
}

.why-choose-us {
  padding: 80px 0 0;
  background-color: #7a3bed;
  text-align: center;
}
.why-choose-us p {
  max-width: 978px;
  margin: 0 auto 80px;
}

.our-testi {
  padding: 80px 0;
}
.our-testi h6 {
  color: #7a3bed;
  text-align: center;
}
.our-testi h2 {
  color: #000000;
  max-width: 866px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 80px;
}
.our-testi .swiper-slide {
  padding: 0 12px;
  overflow: inherit;
}
.our-testi .swiper-slide .clientbx {
  max-width: 418px;
  box-shadow: 0px 4px 25px rgba(10, 10, 32, 0.12);
  border-radius: 22px;
  padding: 25px;
  padding-bottom: 76px;
  text-align: left;
}
.our-testi .swiper-slide .clientbx h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 1px;
}
.our-testi .swiper-slide .clientbx img {
  width: 83px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}
.our-testi .swiper-slide .clientbx img.rating {
  width: 145px;
  margin-bottom: 16px;
  border-radius: 0;
}
.our-testi .swiper-slide .clientbx p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  /* Foundation/W500 */
  color: #414141;
}
.our-testi .swiper-wrapper {
  padding: 17px 0;
}

.love-to-hear {
  background-size: cover !important;
  padding: 100px 0;
}
.love-to-hear h6 {
  color: white;
}
.love-to-hear h2 {
  font-weight: 700;
  font-size: 63px;
  line-height: 76px;
  color: #ffffff;
  max-width: 641px;
}
.love-to-hear .btn:before {
  background-color: #fff;
  left: auto;
  right: -100%;
}
.love-to-hear .btn:hover {
  color: #7a3bed !important;
}
.love-to-hear .btn:hover:before {
  left: auto;
  right: -12px;
}

.faq {
  padding: 80px 0 206px;
}
.faq .faq_cont p {
  padding: 0;
  max-width: 688px;
}
.faq h2 {
  text-align: center;
  font-weight: 700;
  font-size: 78px;
  line-height: 94px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  max-width: 757px;
  margin: 0 auto 40px;
}
.faq h2.accordion-header {
  max-width: inherit;
}
.faq h2 .text-stroke {
  -webkit-text-stroke-color: #000;
}
.faq h6 {
  text-align: center;
  color: #7a3bed;
  margin-bottom: 0;
}
.faq .nav {
  margin-bottom: 28px;
  border-bottom: none;
}
.faq .nav .nav-link {
  font-size: 16px;
  line-height: 19px;
  border-radius: 4px 4px 0px 0px;
  color: #7a3bed;
  font-family: "Syne";
  padding: 28px 25px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  border: none;
}
.faq .nav .nav-link.active {
  background-color: #7a3bed;
  color: white;
}
.faq .faq_item {
  padding: 20px 24px;
  border: 1px solid #ece7e7;
  border-radius: 8px;
  margin-bottom: 12px !important;
}
.faq .faq_item.active {
  box-shadow: none !important;
  border-color: #481ac7;
}
.faq .faq_box::before {
  display: none;
}
.faq .faq_hd.active h3 {
  color: black;
}
.faq .faq_hd h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .faq_hd h3 i {
  font-size: 24px;
}

footer {
  background: #000000;
  padding-top: 67px;
}
footer h4 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: uppercase;
  /* wht */
  margin-bottom: 48px;
}
footer h4 a {
  color: #ffffff;
}
footer h5 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 15px;
}
footer p {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  color: #ffffff;
}
footer ul {
  margin-top: 6px;
}
footer ul li {
  margin-bottom: 15px;
}
footer ul li:last-child {
  margin-bottom: 0;
}
footer ul li a {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  position: relative;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
footer ul li a:hover {
  color: #7a3bed;
}
footer ul li a:before {
  content: ".";
  color: white;
  margin: 0px 10px 0 0;
  position: relative;
  top: -4px;
  font-size: 25px;
  line-height: 0;
}
footer .with-icons ul li a img {
  margin-right: 15px;
}
footer .with-icons ul li a:before {
  display: none;
}
footer .copyright {
  border-top: 1px solid #2e2e2e;
  padding: 15px 0;
  text-align: center;
  margin-top: 95px;
}
footer .copyright p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #d3d3d3;
  margin-bottom: 0;
}
footer .copyright p span {
  font-size: 23px;
  display: inline-block;
  vertical-align: text-bottom;
}

.inner-banner {
  position: relative;
}
.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90.72deg, #000000 0.54%, rgba(9, 8, 8, 0.86) 36.23%, rgba(71, 71, 71, 0) 100.31%);
}
.inner-banner .container {
  top: 70%;
}
.inner-banner h2 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
  max-width: initial !important;
}
.inner-banner h2 span {
  display: inline-block;
}
.inner-banner ul {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.inner-banner ul li {
  position: relative;
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
}
.inner-banner ul li::after {
  content: "/";
  position: absolute;
  top: -2px;
  right: -17px;
}
.inner-banner ul li a {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
}
.inner-banner ul li a:hover {
  color: #7a3bed;
}
.inner-banner ul li:last-child::after {
  display: none;
}

.faqpg {
  padding-bottom: 80px;
}
.faqpg .faq-search {
  max-width: 866px;
  margin: 0 auto;
}
.faqpg .faq-search input[type=search] {
  border: 1px solid #7a3bed;
  border-radius: 8px;
  padding: 18px 20px;
  padding-left: 84px;
  background: url(../images/search.svg) no-repeat left 20px center;
  margin-bottom: 40px;
}
.faqpg .faq-search input[type=search]::placeholder, .faqpg .faq-search input[type=search]::-webkit-input-placeholder, .faqpg .faq-search input[type=search]:-ms-input-placeholder {
  color: black;
}
.faqpg .getin {
  margin: 80px 0 0;
  border-radius: 8px;
  padding: 25px 30px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faqpg .getin .glft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faqpg .getin .glft .glftsep {
  max-width: 388px;
}
.faqpg .getin .glft img {
  width: 98px;
  border-radius: 50%;
}
.faqpg .getin .glft h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  /* identical to box height */
  /* wht */
  color: #ffffff;
  margin-bottom: 12px;
}
.faqpg .getin .glft p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  /* wht */
  color: #ffffff;
}

.mrq-section {
  padding: 80px 0;
  background-color: #7a3bed;
}
.mrq-section h2 {
  max-width: inherit;
}
.mrq-section .swiper-slide {
  padding: 0;
  width: auto;
  background-color: transparent;
}

.repeater-sec .repeater-row {
  padding-top: 80px;
  position: relative;
}
.repeater-sec .repeater-row:first-child > img {
  width: 48.5vw;
}
.repeater-sec .repeater-row:last-child {
  padding-bottom: 80px;
}
.repeater-sec .repeater-row:nth-child(even) > img {
  position: absolute;
  top: 80px;
  bottom: 0;
  left: 0;
  width: 41vw;
}
.repeater-sec .repeater-row:nth-child(even) .container > .row {
  justify-content: flex-end;
}
.repeater-sec .repeater-row > img {
  position: absolute;
  top: 80px;
  bottom: 0;
  right: 0;
  width: 41vw;
}
.repeater-sec .repeater-row h6 {
  color: #7a3bed;
  margin-bottom: 0;
}
.repeater-sec .repeater-row h1 {
  color: black;
}
.repeater-sec .repeater-row h1 span {
  -webkit-text-stroke-color: black;
  display: inline-block;
}
.repeater-sec .repeater-row h3 {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  /* identical to box height */
  /* purple */
  color: #7a3bed;
  margin-bottom: 32px;
}
.repeater-sec .repeater-row p {
  color: black;
  max-width: 530px;
}
.repeater-sec .repeater-row ul {
  display: flex;
  gap: 32px;
}
.repeater-sec .repeater-row ul li {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #000000;
  gap: 8px;
}
.repeater-sec .repeater-row .btn {
  margin-top: 20px;
}

.plans_price {
  margin-bottom: 80px;
}
.plans_price .plans_pricebg {
  padding: 48px 112px;
  border-radius: 16px;
  background-size: cover !important;
}
.plans_price .plans_pricebg h2 {
  max-width: 572px;
  margin-bottom: 12px;
  font-family: "Syne";
  font-style: normal;
  font-weight: 700;
  font-size: 62px;
  line-height: 74px;
  /* wht */
  color: #ffffff;
}
.plans_price .plans_pricebg p {
  margin-bottom: 20px;
}

.service {
  padding: 80px 0;
}
.service h3 {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #000000;
}
.service img {
  margin-bottom: 28px;
}
.service p {
  color: black;
}

.all-services {
  padding: 60px 0 80px;
  margin-bottom: 80px;
  background-color: #7a3bed;
}
.all-services h6 {
  color: white;
}
.all-services h2 {
  color: white;
}
.all-services .serv-pods {
  padding: 20px 20px 27px;
  background: #ffffff;
  height: 100%;
  /* shadow */
  box-shadow: 1.0024px 1.0024px 13.0312px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.all-services .serv-pods img {
  margin-bottom: 20px;
  width: 100%;
}
.all-services .serv-pods h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height */
  text-transform: capitalize;
  margin-bottom: 4px;
  /* BLACK */
}
.all-services .serv-pods h4 a {
  color: #000000;
}
.all-services .serv-pods h4 a:hover {
  color: #7a3bed;
}
.all-services .serv-pods ul li {
  margin-bottom: 12px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
}
.all-services .serv-pods ul li img {
  width: 24px;
  margin-bottom: 0;
}

.contact {
  padding: 80px 0;
}
.contact h2 {
  color: black;
  margin-bottom: 39px;
}
.contact h2 span {
  display: inline-block;
}
.contact h2 span.text-stroke {
  -webkit-text-stroke-color: #000;
}
.contact h6 {
  color: #7a3bed;
  margin-bottom: 0;
}
.contact p {
  color: black;
}
.contact ul {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 66px;
}
.contact ul li a {
  border: 1px solid #7a3bed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a3bed;
  font-size: 15px;
}
.contact .formtxt {
  padding: 40px;
  background: #f6f2ff;
  border-radius: 8px;
}
.contact .formtxt p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  margin-bottom: 27px;
  color: #a9a9a9;
}
.contact .formtxt input:not([type=submit]) {
  border-radius: 8px;
  padding: 12px 10px;
  border: 1px solid #d6d6d6;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 16px;
  /* identical to box height */
  color: #000;
}
.contact .formtxt input:not([type=submit]):focus {
  border: 1px solid #7a3bed;
}
.contact .formtxt input:not([type=submit])::-moz-placeholder {
  color: #9d9d9d;
}
.contact .formtxt input:not([type=submit])::placeholder {
  color: #9d9d9d;
}
.contact .formtxt select {
  border-radius: 8px;
  padding: 12px 10px;
  border: 1px solid #d6d6d6;
  background: url(../images/downarrowselect.svg) right 20px center no-repeat transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 16px;
  /* identical to box height */
  color: #000;
}
.contact .formtxt select:focus {
  border: 1px solid #7a3bed;
}
.contact .formtxt textarea {
  height: 126px;
  border-radius: 8px;
  padding: 12px 10px;
  border: 1px solid #d6d6d6;
  background: transparent;
  resize: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 16px;
  /* identical to box height */
  color: #000;
}
.contact .formtxt textarea::-moz-placeholder {
  color: #9d9d9d;
}
.contact .formtxt textarea::placeholder {
  color: #9d9d9d;
}
.contact .formtxt textarea:focus {
  border: 1px solid #7a3bed;
}
.contact .formtxt .submitbx {
  position: relative;
  border: 1px solid #fff;
}
.contact .formtxt .submitbx:hover {
  border: 1px solid #7a3bed;
}
.contact .formtxt .submitbx input[type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.contact .formtxt h4 {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  /* identical to box height, or 150% */
  /* purple */
  color: #7a3bed;
  margin-bottom: 39px;
}
.contact .formtxt h5 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 20px;
}

.map-section {
  position: relative;
  overflow: hidden;
}
.map-section .map-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: auto;
  width: calc(50vw + 300px);
}
.map-section .map-inner iframe {
  width: 100% !important;
  height: 100% !important;
}
.map-section .p-80 {
  padding: 80px 0;
}
.map-section h3 {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  /* identical to box height */
  color: #000000;
  margin-bottom: 25px;
}
.map-section ul li {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  margin-bottom: 20px;
}
.map-section ul li a {
  color: #000000;
}
.map-section ul li p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: black;
}
.map-section ul li .label span {
  display: flex;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  gap: 5px;
  margin-bottom: 8px;
  /* identical to box height */
  /* purple */
  color: #7a3bed;
}

.formtxt {
  padding: 40px;
  background: #f6f2ff;
  border-radius: 8px;
}
.formtxt p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  margin-bottom: 27px;
  color: #a9a9a9;
}
.formtxt input:not([type=submit]) {
  border-radius: 8px;
  padding: 12px 10px;
  border: 1px solid #d6d6d6;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 16px;
  /* identical to box height */
  color: #000;
}
.formtxt input:not([type=submit]):focus {
  border: 1px solid #7a3bed;
}
.formtxt input:not([type=submit])::-moz-placeholder {
  color: #9d9d9d;
}
.formtxt input:not([type=submit])::placeholder {
  color: #9d9d9d;
}
.formtxt select {
  border-radius: 8px;
  padding: 12px 10px;
  border: 1px solid #d6d6d6;
  background: url(../images/downarrowselect.svg) right 20px center no-repeat transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 16px;
  /* identical to box height */
  color: #000;
}
.formtxt select:focus {
  border: 1px solid #7a3bed;
}
.formtxt textarea {
  height: 126px;
  border-radius: 8px;
  padding: 12px 10px;
  border: 1px solid #d6d6d6;
  background: transparent;
  resize: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 16px;
  /* identical to box height */
  color: #000;
}
.formtxt textarea::-moz-placeholder {
  color: #9d9d9d;
}
.formtxt textarea::placeholder {
  color: #9d9d9d;
}
.formtxt textarea:focus {
  border: 1px solid #7a3bed;
}
.formtxt .submitbx {
  position: relative;
  border: 1px solid #fff;
}
.formtxt .submitbx:hover {
  border: 1px solid #7a3bed;
}
.formtxt .submitbx input[type=submit] {
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.formtxt h4 {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  /* identical to box height, or 150% */
  /* purple */
  color: #7a3bed;
  margin-bottom: 39px;
}
.formtxt h4 span {
  color: black;
  display: block;
}
.formtxt h5 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 20px;
}

.about-top {
  padding: 80px 0;
}
.about-top h2 {
  color: black;
  margin-bottom: 60px;
  max-width: 672px;
}
.about-top h2 span {
  display: inline-block;
}
.about-top h2 span.text-stroke {
  -webkit-text-stroke-color: #000;
}
.about-top h6 {
  color: #7a3bed;
  margin-bottom: 0;
}
.about-top p {
  color: black;
}
.about-top .txt {
  position: relative;
  display: flex;
  background: #f3f7fb;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}
.about-top .txt .vertical {
  background: #000000;
  border-radius: 0px 8px 8px 0px;
  color: #7a3bed;
  padding: 25px 4px;
  writing-mode: tb;
  white-space: nowrap;
  transform: inherit;
  transform-origin: unset;
  margin-right: 0;
  transform: scale(-1);
}
.about-top .txt p {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  padding: 20px 0;
  /* or 214% */
  display: flex;
  align-items: center;
  text-transform: capitalize;
  padding: 0;
  color: #000000;
}
.about-top .txt + ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}
.about-top .txt + ul li {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #000000;
  gap: 8px;
}
.about-top .abt-top-left ul li {
  border-bottom: 1px solid #d3d3d3;
  margin-top: 20px;
  padding: 8px 0;
}
.about-top .abt-top-left ul li p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-top .abt-top-left ul li p img {
  flex: 1 0 40px;
}

.about-mid .formtxt {
  border-radius: 0;
}
.about-mid .formtxt input,
.about-mid .formtxt select,
.about-mid .formtxt textarea {
  margin-bottom: 37px;
}
.about-mid .col-md-6:nth-child(1) {
  padding-right: 0;
}
.about-mid .col-md-6:last-child {
  background-color: #f6f2ff;
}

.about-bottom {
  padding: 80px 0;
}
.about-bottom h2 {
  color: black;
  margin-bottom: 12px;
  max-width: inherit;
  font-size: 74px;
  line-height: 90px;
}
.about-bottom h2 span {
  display: inline-block;
}
.about-bottom h2 span.text-stroke {
  -webkit-text-stroke-color: #000;
}
.about-bottom h6 {
  color: #7a3bed;
  margin-bottom: 0;
}
.about-bottom p {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: black;
}

.about-mid .midtxt {
  display: flex;
  justify-content: space-between;
}
.about-mid .midtxt img {
  width: 370px;
}
.about-mid .midtxt .txtinner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-mid .midtxt h6 {
  margin-bottom: 0;
}
.about-mid .midtxt h3 {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
  text-align: center;
  text-transform: capitalize;
  /* wht */
  color: #ffffff;
}
.about-mid .midtxt .btn {
  border: 1px solid white;
}

span.wpcf7-spinner {
  z-index: 999;
  position: absolute;
  bottom: 12px;
  right: -18px;
}

form.wpcf7-form .wpcf7-response-output {
  border: 1px solid red !important;
  color: red !important;
}

.sub-menu-toggle {
  display: none;
}

.about-mid {
  background-size: cover !important;
}

.wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -30px;
  left: 0px;
}/*# sourceMappingURL=style.css.map */