/*Main Css */
:root {
  --primary: #4837ff;
  --bg-light: #ffdecc;
  --bg-gray: #171717;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;

  --font-heading: "Proxima Nova Rg", sans-serif;
  --font-accent: "DM Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
  background: #4837ff;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #4837ff;
}

/* Tabbing CSS */

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  /* background: linear-gradient(180deg, #212121 0%, #171717 66.62%); */
  background: #161616;
}
body.inner-header {
  padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
  font-family: var(--font-heading);
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

span {
  display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
  font-family: var(--font-body);
  font-weight: 400;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  opacity: 1;
}

/* Padding Classes */
.pad-zero {
  padding: 0px;
}
.pad-l-zero {
  padding-left: 0px;
}
.pad-r-zero {
  padding-right: 0px;
}
.ovr-hiddn {
  overflow: hidden;
}
.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.overlay {
  display: none;
}
.overlay.active {
  display: block;
}

/* Heading Classes */
.hding-1 h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 75px;
}
.highlighted {
  color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
  margin: 0 -15px;
}
.slick-slide {
  margin: 0 15px;
}
.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}
.slick-dots li {
  margin: 0 10px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}
.slick-dots li button {
  height: 8px;
  width: 8px;
  border-radius: 100px;
  padding: 0px;
  background: #dddddd;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}
.slick-dots li.slick-active button {
  background: var(--primary);
  width: 8px;
}

/*header css*/
header {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  position: fixed;
  background: transparent;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
}
header.sticky {
  /* background: white; */
  /* box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%); */
  /* top: 0; */
}
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
  max-width: 128px;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}
.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary);
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
  top: 0;
}
.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}
.menu-Bar span:nth-child(3) {
  top: 16px;
}
.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/* Menu Css */
.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}
.menu > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0px 0 0px 35px;
}
.menu > li > a {
  display: block;
  font-size: 14px;
  color: var(--white);
  /* text-transform: uppercase; */
  font-weight: 400;
}
.header-btn {
  background: var(--primary);
  color: white !important;
  padding: 14px 20px;
  font-weight: 400 !important;
  border-radius: 68px;
}
.header-btn:hover {
  transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
  color: var(--primary);
}

@keyframes scale-display {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scale-display--reversed {
  0% {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  99% {
    display: inline-flex;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    display: none;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

/* Menu Dropdown CSS */
.has-child {
  position: relative;
  z-index: 1;
}
.dropdown {
  position: absolute;
  background: #252525;
  /* padding: 1rem; */
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 300px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
  margin-top: 26px;
}

@keyframes slide {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.dropdown .dropdown {
  left: 100%;
  top: 0;
}
.dropdown ul li a {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
}
.dropdown li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
  0% {
    top: 75px;
    opacity: 1;
  }
  100% {
    top: 115px;
    opacity: 0;
  }
}

@keyframes btot {
  0% {
    top: 115px;
    opacity: 0;
  }
  100% {
    top: 40px;
    opacity: 1;
  }
}

/* Main Banner CSS */
.mainBanner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-content {
  padding: 193px 0 0px;
}
h1.banner-heading {
  margin-bottom: 15px;
  color: #fcfcfc;
  font-size: 66px;
  font-weight: 700;
  line-height: 76px; /* 115.152% */
}
span.sub-heading {
  font-size: 14px;
  font-weight: 400;
  border-radius: 59px;
  border-right: 6px solid #4837ff;
  border-left: 6px solid #4837ff;
  background: rgba(72, 55, 255, 0.26);
  color: #d9d9d9;
  line-height: 24px;
  padding: 6px 18px;
  margin-bottom: 19px;
}
p.banner-text {
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  opacity: 0.67;
}
.header-wrap {
  border-radius: 100px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: linear-gradient(0deg, #252525 0%, #252525 100%), #222;
  box-shadow: 0px 4px 39.6px 0px rgba(0, 0, 0, 0.25);
  padding: 5px 20px;
  margin-top: 37px;
}
.banner-ul-list li {
  color: #fcfcfc;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  opacity: 0.67;
  border-bottom: 1px solid #ffffff85;
  padding: 12px 0 13px;
}
.banner-ul-list li i.fas.fa-check-circle {
  color: var(--primary);
  margin-right: 12px;
}
ul.banner-ul-list {
  padding: 13px 0;
  max-width: 80%;
}
.banner-content-border {
  border-radius: 124px 124px 0 0;
  /* background: linear-gradient(180deg, #212121 0%, #171717 66.62%); */
  box-shadow: 0px -50px 67.5px 0px rgba(72, 55, 255, 0.3);
  border: 3px solid var(--primary);
  border-bottom: 0;
  padding: 86px 77px 60px 97px;
  background: #161616;
}
.banner-content-border {
  margin-left: 11%;
  margin-right: 11%;
}
.banner-img {
  position: absolute;
  top: -12vw;
  left: -7vw;
  width: 43vw;
}
.trusted-wrapper {
  border-radius: 55px;
  border: 1px solid rgba(217, 217, 217, 0.1);
  background: #171717;
  padding: 45px 0;
}
.sec-heading h3 {
  color: #fcfcfc;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
}
.trusted-wrapper ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.sec-1 {
  padding: 30px 0;
}
.counter-wrapper {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: center;
}
.about-image {
  border-radius: 59px;
  opacity: 0.4;
  background: linear-gradient(180deg, rgba(72, 55, 255, 0) 3.96%, #2b2199 100%);
  height: 100%;
  padding: 69px 8px;
}
.service-wrapper {
  border-radius: 70px;
  background: #ededed;
  padding: 80px 60px;
}
.service-wrapper .sec-heading h2 {
  color: #202020;
}
.service-wrapper .sec-heading p {
  color: #202020;
}
.service-wrapper .sec-heading .sub-heading {
  color: #202020;
}
.service-wrapper.wrapper-2 {
  padding: 18px 13px;
}
.service-wrapper.wrapper-2 img {
  width: 100%;
}
.sec-heading h4 {
  color: #202020;
  font-size: 34px;
  line-height: 39px; /* 114.706% */
}
.row.align-items-center.border-bottom {
  padding: 66px 0;
  position: sticky;
  top: 98px;
  background: #ededed;
  border-radius: 66px;
  box-shadow: 0px -19px 67.5px 0px rgb(237 237 237);
}
.process-wrapper span.number {
  color: #fcfcfc;
  font-size: 152.13px;
  font-weight: 600;
  line-height: 196px; /* 128.837% */
  opacity: 0.1;
  position: absolute;
  top: -96px;
  left: -77px;
}
.process-wrapper h3 {
  font-size: 34px;
  line-height: 39px; /* 114.706% */
  padding-bottom: 10px;
}
.process-wrapper p {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 24px; /* 150% */
  opacity: 0.67;
}
.process-wrapper {
  position: relative;
}
.process-image {
  text-align: center;
}
.process-wrapper span.number.two {
  left: 74%;
}
.portfolio-wrapper {
  border-radius: 55px;
  border: 1px solid rgba(217, 217, 217, 0.1);
  background: var(--Main, #4837ff);
  padding: 86px 50px;
}
.portfolio-wrapper span.sub-heading {
  border-radius: 59px;
  border-right: 6px solid #fff;
  border-left: 6px solid #fff;
  background: rgba(255, 255, 255, 0.15);
}
.port-image {
  width: 100%;
  margin-bottom: 20px;
}
.port-image a {
  width: 100%;
}
.port-image a img {
  width: 100%;
}
.get-strated-card {
  border-radius: 15px;
  border: 0.806px solid rgba(217, 217, 217, 0.1);
  background: #252525;
  padding: 14px;
  height: 100%;
}
.get-strated-card img {
  width: 100%;
}
.get-strated-card h3 {
  color: #fcfcfc;
  font-size: 18px;
  line-height: normal;
  border-bottom: 1px solid #ffffff3d;
  padding: 10px 0;
  margin-bottom: 10px;
}
.get-strated-card p {
  color: #fcfcfc;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  letter-spacing: -0.14px;
}
.get-started-wrapper {
  border-radius: 55px;
  border: 1px solid rgba(217, 217, 217, 0.1);
  background: #171717;
  padding: 86px 40px 49px;
}
.awards-wrapper {
  border-radius: 55px;
  background: #4837ff;
  padding: 56px 50px;
}
.awards-wrapper span.sub-heading {
  border-radius: 59px;
  border-right: 6px solid #fff;
  border-left: 6px solid #fff;
  background: rgba(255, 255, 255, 0.15);
}
ul.awards-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner-img img {
  width: 50vw;
}

img.banner-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  width: 100%;
  z-index: -9;
}

/* .box {
    position: relative;
    align-items: center;
    overflow: hidden;
}
.linear::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: conic-gradient(rgb(227 48 19) 20deg, #161616 120deg);
    animation-name: rotate;
    animation-duration: 4s;
    animation-timing-function: linear;
    top: 0;
    left: 0;
}
  
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
} */

.dotted-line:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  background-image: url(../images/dotted-lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
}
.dotted-line {
  position: relative;
}
.dotted-line.dl-2:before {
  transform: rotate(45deg);
}

.testimonial-card {
  background-color: #1f1f1f;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: 300px;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-card .name {
  font-weight: bold;
  margin-top: 10px;
}

.testimonial-card .position {
  font-size: 14px;
  color: #ccc;
}
.testi-card p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: #fcfcfc;
}
.bottom {
  margin-top: 20px;
}
.testi-card .bottom span.name {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 24px;
  display: block;
  margin-top: 8px;
}
.testi-card .bottom span.des {
  color: #fcfcfc;
  font-size: 12px;
  line-height: 24px;
  display: block;
}
.client-images {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: -18%;
  bottom: 0;
}
.testimonial-slider {
  margin: 100px 0;
  position: relative;
}
.testi-card {
  max-width: 80%;
}

.service-card {
  border: 0.81px solid #d9d9d91a;
  background: #252525;
  border-radius: 15px;
  padding: 14px;
}
.service-card img {
  width: 100%;
}
.service-card h3 {
  font-size: 18px;
  line-height: normal;
  padding-bottom: 15px;
}
.padding1 {
  padding-left: 16%;
}
.our-work-slider .slick-list.draggable {
  padding-right: 25%;
}
.inner-cards {
  background: #5d4eff;
  border: 0.81px solid #d9d9d91a;
  border-radius: 15px;
  padding: 14px;
  height: 100%;
}
.inner-cards img {
  width: 100%;
}
.inner-cards h3 {
  font-size: 18px;
  line-height: normal;
  border-bottom: 1px solid #ffffff40;
  padding: 15px 0 10px;
}
.inner-cards p {
  font-size: 14px;
  line-height: 19px;
  padding-top: 10px;
  opacity: 67%;
}
.bottomline {
  background: #161616;
  border-bottom: 1px solid #ffffff5c;
  padding: 70px 0;
  position: sticky;
  top: 98px;
}
.six-step-wrapper {
  background: #4837ff;
  border-radius: 55px;
  border: 1px solid #d9d9d91a;
  padding: 70px 30px;
}
.trusted-card {
  border: 0.81px solid #d9d9d91a;
  background: #252525;
  border-radius: 15px;
  padding: 28px;
  height: 100%;
  text-align: center;
}
.trusted-card h3 {
  font-family: DM Sans;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #ffffff3b;
  padding: 15px 0 10px;
  margin-bottom: 10px;
}
.trusted-card p {
  font-size: 14px;
  line-height: 19px;
  opacity: 67%;
}
section.cta-sec {
  padding: 95px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.review-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid #d9d9d95c;
  border-radius: 25px;
  padding: 14px;
}

.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
  margin: 0 10px;
}
.design-card-list-2 {
  direction: rtl;
}
.design-card-list,
.design-card-list-2 {
  padding-bottom: 2rem;
}
.design-card-list li,
.design-card-list-2 li {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 300px;
  border: 1px solid rgba(217, 217, 217, 0.36);
  gap: 15px;
  padding: 7px 10px;
  width: fit-content !important;
}

.design-card-list li span,
.design-card-list-2 li span {
  color: #fcfcfc;
  font-size: 13px;
  text-align: left;
}

/* Accordian */
.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 18px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(217, 217, 217, 0.1);
  background: #252525;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fcfcfc;
}
ul.accordion-list li h3:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
  right: 0;
  color: #9ca3af;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  top: 0;
}
.accordion-list li.active h4::after {
  color: #9ca3af;
  content: "\f077";
}
ul.accordion-list li.active h3:after {
  content: "\f077";
}
.answer p {
  margin-top: 10px;
  color: #fcfcfc;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  opacity: 0.67;
}
.answer {
  border-top: 1px solid #ffffff3b;
  margin-top: 20px;
}
/* Accordian */

/* packages */
.pkg-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.pkg-list .g-2 {
  grid-template-columns: repeat(2, 1fr);
}
.pkg-list .d2 .pckg {
  border: 1px solid #e5e7eb;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.pkg-list .d2 .pckg .upper {
  text-align: center;
}
.pkg-list .d2 .pckg .upper .price {
  justify-content: center;
}
.pkg-list .d2 .pckg .upper .title {
  font-size: 24px;
  line-height: 24px;
}
.pkg-list .d2 .pckg .upper .price .amount {
  font-weight: 800;
  font-size: 70px;
  line-height: 85px;
}
.pkg-list .d2 .pckg .bottom p {
  font-size: 18px;
  line-height: 26px;
  color: #6b7280;
}
.pckg.d2 {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.pckg.d2 .upper .title {
  font-size: 24px;
  line-height: 24px;
}
.pckg.d2 .upper {
  text-align: center;
}
.pckg.d2 .upper .price {
  justify-content: center;
}
.pckg.d2 .upper .price .amount {
  font-size: 70px;
  line-height: 85px;
}
.pckg.d2 .bottom .hdng {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #525aec;
  margin-bottom: 1rem;
}
.pckg.d2 .bottom p {
  color: #6b7280;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 1rem;
}
.pckg {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  /*margin-top: 1rem;*/
  transition: 0.3s;
  background: #fff;
  box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
  border-radius: 22px;
  border: 1px solid transparent;
  height: 100%;
  padding: 30px 20px;
  border-radius: 20px;
  background: #252525;
}
.pckg .btn-wrap a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.pckg .btn-wrap .btn-norm {
  color: var(--primary);
  transition: 0.5s ease;
}
.pckg .btn-wrap .btn-norm:hover {
  transform: scale(1.03);
}
.pckg .upper .title {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 14px;
  color: #fcfcfc;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pckg .upper .starting-in {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}
.pckg .upper p {
  font-size: 16px;
  line-height: 24px;
  color: #fcfcfc;
  margin-bottom: 1rem;
  opacity: 0.67;
}
.pckg .upper .price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 0 20px;
  border-top: 1px solid #ffffff3b;
  border-bottom: 1px solid #ffffff3b;
}
.pckg .upper .price .amount {
  font-weight: 700;
  font-size: 44px;
  line-height: normal;
  color: var(--white);
}
.pckg .upper .price .uspto {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #5b5b5b;
}
.pckg .bottom .includes {
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #111827;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
}
.pckg .bottom ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  display: flex;
  opacity: 0.67;
  color: #fcfcfc;
}
.pckg .bottom ul {
  margin: 1rem 0 3rem;
  overflow-y: auto;
  /* max-height: 179px; */
  padding-right: 10px;
  height: 254px;
  overflow-y: scroll;
}
.bottom span {
  color: #fcfcfc;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.pckg .bottom ul li:not(.last) {
  margin-bottom: 15px;
}
.pckg .bottom ul li::before {
  content: "";
  font-family: var(--icon);
  content: "\f00c";
  font-weight: 400;
  color: #fff;
  margin-right: 12px;
  display: flex;
  width: 22px;
  height: 22px;
  padding: 7.071px 6.286px;
  align-items: center;
  justify-content: center;
  gap: 7.857px;
  background: var(--primary);
  font-size: 12px;
  border-radius: 100%;
}
.pckg .btn-wrap {
  flex-direction: column;
  margin: 0;
}
span.tag {
  background: #fbbf24;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 32px;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-radius: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52%;
}
.pckg:hover {
  border: 1px solid #fff;
  background: #000;
}
.pckg a.call-btn {
  color: #fcfcfc;
  font-size: 14px;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.28px;
  opacity: 0.67;
}
ul.overview-nav li {
  /* background: #fff; */
  /* padding: 20px; */
  /* border-radius: 10px; */
  /* border: 1px solid #000; */
}

ul.overview-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 200px;
  background: #252525;
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  margin: 0 auto 50px;
  width: 18vw;
}
.overview-nav li.active a {
  color: #fff;
  background: var(--primary);
}
.overview-nav li a {
  background: transparent;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #00000014;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  border-radius: 47px;
}
.pckg .bottom ul span {
  font-size: 16px;
  padding-bottom: 14px;
}

/* packages */

/* Sec Headings */
.sec-heading {
  margin-bottom: 2rem;
}
.sec-heading.center {
  text-align: center;
}
.sec-heading h2 {
  font-size: 44px;
  line-height: 44px;
  font-weight: 600;
}
.sec-heading.white h2 {
  color: white;
}
.sec-heading p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 1rem 0;
  color: #fcfcfc;
  opacity: 0.67;
}
.sec-heading .sub-heading {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 1rem;
  color: #d9d9d9;
}
/* Sec Headings */

/* sections */
section {
  padding: 50px 0;
  position: relative;
}
.padding-2 {
  padding: 1rem 0;
}
/* sections */

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}
.btn-wrap .theme-btn {
  padding: 14px 20px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  border-radius: 68px;
  font-weight: 400;
  border: 2px solid var(--primary);
  transition: 0.5s ease;
}
.btn-wrap .theme-btn.bordered {
  color: #fff;
  border-radius: 68px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.26);
}
.btn-wrap .theme-btn:hover {
  transform: scale(1.03);
}
.service-wrapper .theme-btn.bordered {
  border-radius: 68px;
  border: 1px solid #4837ff;
  background: rgba(72, 55, 255, 0.16);
  color: var(--primary);
}
/* Theme Buttons */

/* Country Code */
.newcountrycode {
  position: relative;
  display: flex;
  align-items: center;
  /* padding-left: 40px; */
  border: 1px solid #ddd;
  height: 45px;
  border-radius: 5px;
}
.newcountrycode select {
  width: 56px;
  border: 0;
  padding: 0px 19px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.newcountrycode .countrycode {
  width: 70px;
  border: 0;
  background: #f9f9f9;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  margin: 0 10px;
}
.newcountrycode .phone-field {
  width: 100%;
}
.newcountrycode input {
  border: 0;
}
/* Country Code */

/* footer */
footer {
  background: #030e1a;
  padding: 1.5rem 0;
}
.copyright {
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;
}
.copyright p,
.copyright a {
  color: white;
}
ul.f-link {
  display: flex;
  align-items: center;
  gap: 20px;
}
ul.f-link li:first-child {
  border-right: 1px solid #fff;
  padding-right: 20px;
}
ul.social-icons {
  margin-top: 44px;
}
.copyright ul {
  display: flex;
  align-items: center;
}

.copyright ul li {
  margin-left: 12px;
}
/* footer */

/* -------------------------counter CSS------------------------  */
ul#counter {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-direction: column;
  justify-content: start;
}
.counter-wrapper .counter {
  display: flex;
  align-items: center;
  gap: 20px;
}
.counter-wrapper .counter span.count {
  font-weight: 700;
  font-size: 45px;
  /* color: #000; */
}
ul#counter li .counter > div {
  font-weight: 600;
  font-size: 44px;
  margin-bottom: 0rem;
  flex-shrink: 0;
  color: #fcfcfc;
}
ul#counter li {
  background-repeat: no-repeat;
  background-position: center;
  padding: 42px 53px;
  /* text-align: center; */
  line-height: 28px;
  display: flex;
  align-items: start;
  justify-content: start;
  border-radius: 31px;
  border: 1px solid rgba(217, 217, 217, 0.36);
  width: 100%;
}
ul#counter li .counter span.text {
  font-size: 16px;
  font-weight: normal;
  opacity: 0.67;
  color: #fcfcfc;
}
/* -------------------------counter CSS------------------------  */

/* -------------------------contact us-------------------------- */
.input-field1 label {
  padding-left: 10px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 12px;
}
.input-field1 input,
.input-field1 textarea {
  width: 100%;
  font-size: 16px;
  color: #fff;
  padding: 12px 16px;
  outline: none !important;
  margin-bottom: 30px;
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #d9d9d94d;
}
.send {
  text-align: left;
  padding-top: 10px;
}
.send input[type="submit"] {
  height: fit-content;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.4s ease;
  text-transform: capitalize;
  width: 100%;
  border: 0;
  padding: 18px 24px;
  border-radius: 68px;
  background-color: var(--primary);
}
.contact-details {
  border-radius: 20px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: #252525;
  padding: 20px;
}
.contact-details .title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.48px;
  margin-bottom: 10px;
}
.contact-details .para {
  color: #ffffffb3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.details-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 30px;
}
.details h5 {
  font-size: 18px;
  padding-bottom: 20px;
  color: #202529;
}
.details a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.details {
  border-radius: 60px;
  border: 1px solid #4837ff80;
  background: #4837ff1a;
  padding: 14px 20px;
}
.social-icons li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  height: 40px;
  width: 40px;
  background: #252525;
  border-radius: 50px;
  text-align: center;
}
.social-icons li a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
}
.details a i,
.details p i {
  color: #fff;
  padding-right: 12px;
}
/* -------------------------contact us-------------------------- */

/* popup */
.overlay {
  background-color: rgb(197 197 197 / 32%);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999;
  display: none;
  backdrop-filter: blur(10px);
}
.popupmain {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  /* background: #fff; */
  box-shadow: 0 0 30px -9px #0000006e;
  z-index: 9999999;
  display: none;
  /* border-radius: 8px; */
  max-height: 90vh;
}
.mmpopup {
  /* background: url("../images/popup-bg.webp"); */
  /* background-size: cover; */
  /* background-position: center; */
  border-radius: 33px;
  border: 1px solid #171717;
  padding: 12px;
  background: #171717;
}
.mmpopup .popup-content {
  padding: 20px;
  width: 100%;
  max-width: 500px;
  border-radius: 29px;
  background: #4f49f3;
  box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(33.75px);
  overflow: hidden;
  height: 100%;
}
.mmpopup .formpop {
  width: 100%;
  margin-top: 20px;
}
.mmpopup .form-text {
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
}
.mmpopup .form-text a {
  color: #659640;
  font-weight: 700;
}
.mmpopup .form-text a:hover {
  color: var(--secondary);
}
.mmpopup .form-group-wrapper {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); */
  /* align-items: center; */
  gap: 0;
  column-gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}
.mmpopup .fld-input {
  height: 50px;
  width: 100%;
  /* margin-bottom: 9px; */
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  overflow: hidden;
}
.mmpopup .centercont h3 {
  font-size: 38px;
  color: #141515;
  margin-bottom: 10px;
  /* display: flex; */
  /* align-items: center; */
}
.mmpopup .centercont h4 {
  font-size: 20px;
  color: #566060;
  margin-bottom: 10px;
}
.mmpopup .centercont h4 span {
  color: #86cb92;
}
.mmpopup .centercont p {
  color: #333;
  font-size: 14px;
  margin-bottom: 120px;
  line-height: 20px;
}
.closeico {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 100px;
}
.closeico i {
  background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
    no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.closeico1 {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
}
.closeico1 i {
  background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
    no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.mmpopup .centercont p {
  margin-bottom: 10px;
  line-height: 23px;
  color: #565656;
  max-width: 390px;
  margin: auto;
  display: block;
  position: relative;
}
.mmpopup .centercont ul {
  margin-bottom: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding: 27px 49px 27px 24px;
  background: #fff;
  border-radius: 10px;
  margin-right: 20px;
}
.mmpopup .centercont ul li {
  display: block;
  font-size: 15px;
  color: #000;
  padding-bottom: 12px;
}
.mmpopup .centercont ul li.last {
  padding-bottom: 0;
}
.mmpopup .centercont ul li i {
  color: #ff533e;
  border: 1px solid;
  border-radius: 100px;
  margin-right: 8px;
  font-size: 10px;
  padding: 3px;
}
.mmpopup .centercont h4 {
  font-size: 14px;
  color: #659640;
}
.mmpopup .centercont h3 {
  font-size: 50px;
  font-weight: 400;
  /* color: #0085ff; */
  /* display: flex; */
  /* align-items: center; */
}
.mmpopup .centercont h3 span {
  color: #fff;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mmpopup .centercont h4 span {
  font-weight: 500;
  color: #fff;
  font-size: 32px;
}
.fld-input {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(218 217 217);
  border-radius: 5px;
  background-color: #fff;
  width: 354px;
  height: 66px;
  margin-bottom: 20px;
}
.fld-input input {
  width: 100%;
  height: 100%;
  padding: 0 24px;
  font-size: 16px;
  letter-spacing: 0.2px;
  background: #eeeeee;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
  font-family: "Inter";
}
.fld-input input::placeholder {
  color: #737373;
  font-weight: 400;
}
.fld-btn button {
  border: 0;
}
.form-group field input.form-field {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.form-group input.form-field {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 16px;
  width: 100%;
  border: 1px solid #d9d9d947;
  border-radius: 65px;
  height: 44px;
}
.fld-btn button.banner-btn {
  border: 4px solid var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 40px;
  border-radius: 65px;
  background: var(--primary);
  box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.fld-btn.packageformsubmit {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-group.field {
  margin-bottom: 15px;
}
.popup-content h3 {
  font-family: DM Sans;
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  padding-bottom: 10px;
}

.popup-content p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 12px;
}

.popup-content img {
  text-align: center;
  display: flex;
  margin: 0 auto;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
  padding: 68px 0 0;
  border: 1px solid rgba(217, 217, 217, 0.1);
  background: var(--Main, #4837ff);
}
.copyright {
  padding: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright p,
.copyright a {
  color: white;
}
ul.f-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-sec p {
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  padding-top: 14.5px;
}
.footer-hdng h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.f-menu li a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}
.footer-hdng p {
  color: #fff;
  line-height: normal;
  padding-bottom: 16px;
}
.hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hours p {
  color: #fff;
  font-size: 16px;
}
.f-menu li a i {
  color: var(--white);
  margin-right: 10px;
}
.f-menu li {
  line-height: 2;
}
.copyright-sec {
  background: #222222;
}
.f-link li {
  width: 40.8px;
  height: 40.8px;
  background: var(--primary);
  border-radius: 50px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-text h4 {
  color: #fcfcfc;
  font-size: 24px;
  font-weight: 600;
  line-height: 39px; /* 162.5% */
}
.footer-text p {
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.row.tb-border {
  border-top: 1px solid #ffffff52;
  border-bottom: 1px solid #ffffff52;
  padding: 25px 0;
  margin-top: 40px;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
  font-size: 96px;
  line-height: 68px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.error-heading {
  font-weight: 500;
  font-size: 52px;
  line-height: 68px;
}
.error-image {
  margin-top: 100px;
}
.thankyou-text {
  font-size: 20px;
  initial-letter: 30;
  line-height: 34px;
  margin-top: 20px;
}
/* 404 */

/* terms */
.terms-page {
  padding: 150px 0 50px;
}
.terms ul {
  /* padding-left: 40px; */
  line-height: 25px;
  font-size: 16px;
  color: #333;
}
.terms ul li {
  margin-bottom: 1rem;
}
.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}
.terms h4 {
  font-size: 24px;
  margin: 2rem 0 1rem;
  color: #fff;
}
.terms p {
  margin-bottom: 1rem;
  color: #fff;
}
ul.list-ul {
  list-style: disc;
  margin-left: 22px;
}

ul.list-ul li {
  color: #fff;
}
/* terms */

.testimonial-slider {
  /* padding: 40px; */
}
.slider-row {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin-left: -5vw;
}
/* Thumbnail section */
.thumbnails {
  display: flex;
  flex-direction: row;
  gap: 12px;
  /* flex-shrink: 0; */
  width: 46vw;
  z-index: 0;
}
.thumb {
  /* width: 60px; */
  /* height: 60px; */
  border-radius: 12px;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s ease;
  width: 24%;
}
.thumb.active {
  opacity: 1;
  /* transform: scale(1.3); */
  z-index: 1;
  /* border: 2px solid #fff; */
}
/* Main testimonial content */
.testimonial-content {
  display: flex;
  gap: 20px;
  /* background: #1a1a1a; */
  /* border-radius: 16px; */
  /* padding: 20px; */
  /* max-width: 435px; */
  align-items: center;
  justify-content: end;
  margin-left: 0;
  /* margin-top: -41px; */
}
.main-img {
  width: 286px;
  height: 406px;
  border-radius: 16px;
  object-fit: cover;
  /* transform: scaleY(1.3); */
  margin-left: -7px;
  flex-shrink: 0;
}
.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fcfcfc;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  width: 24vw;
}
.stars {
  color: gold;
  margin: 40px 0 0;
}
.dots {
  display: flex;
  gap: 8px;
  margin-top: 50px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #666;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.dot.active {
  background-color: white;
}
h3#testimonialName {
  color: #fcfcfc;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

span.stars-rating i {
    color: #f0dc00;
}
.testimonial-logo {
    width: 80px;
    height: auto;
    margin-bottom: 12px;
}





.pacakgeDetailPg{ padding:50px 0; } 
.pacakgeDetailPg .refund-con-box li{ font-size: 1rem; } 
.pacakgeDetailPg .refund-con-box-container{ height: initial; padding: 15px 15px 15px 25px; } 
.pacakgeDetailPg .refund-con-box{ overflow-y: initial; height: initial; }
.detanchor{ margin-top: 2rem; }
.detanchor a{ text-decoration:underline !important; color: #000; }
.refund-con-box-container {
    border: 1px solid #c7c7c7;
    height: 410px;
    padding: 25px 15px 25px 25px;
    border-radius: 9px;
    margin-bottom: 20px;
    background: #252525;
}
.pacakgeDetailPg .refund-con-box {
    overflow-y: initial;
    height: initial;
}
.refund-con-box li {
    list-style: disc;
    margin: 9px 18px;
    line-height: 1.3em;
}
.pacakgeDetailPg .pckg {
    height: auto;
}
.view-detail-btn {
    color: #fff;
    text-decoration: underline;
}






@media (max-width: 1440px) {
}

@media (max-width: 1200px) {
  ul.menu.btns li {
    border-bottom: 0;
  }
  .menu > li :hover > a,
  .menu > li .active > a {
    color: #000;
  }
  header {
    padding: 1rem 0;
  }
  .btns {
    margin: 1.5rem 0;
  }
  .dropdown {
    position: unset;
    box-shadow: none;
    width: 100%;
    background: #4837ff;
    margin-top: 0;
  }
  .dropdown ul li a {
    padding: 0;
    line-height: 1rem;
    /* padding: 0; */
    padding: 1rem;
    font-weight: 500;
  }
  .form-head .form-heading {
    white-space: normal;
    font-size: 20px;
  }
  .form-head {
    padding: 1rem;
  }
  .btn-normal {
    padding: 10px 8px;
  }
  .sub-menu a {
    color: #333 !important;
    margin-bottom: 0 !important;
  }
  .sub-menu {
    left: auto !important;
    padding-top: 16px;
    top: 24px;
  }
  a.header-btn {
    padding: 15px 20px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    gap: 5px !important;
    align-items: center;
  }
  .menuWrap .menu:first-child {
    padding-left: 0;
    width: 100%;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .menu-Bar {
    display: block;
    top: 0px;
    right: 30px;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    /* right: 0; */
    top: 0;
    bottom: 0;
    margin: auto;
    background: #252525;
    height: 100dvh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 70%;
    overflow-y: auto;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
      0px 2px 4px -1px rgb(0 0 0 / 6%);
  }
  ul.menu > li {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid #ddd;
    padding: 0;
    flex-direction: column;
  }
  ul.menu > li > a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
  }
  .container {
    position: relative;
  }
  header .main-header ul.menu > li > a {
    color: #fff;
    width: 100%;
    text-align: left;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }
  header .main-header ul.menu > li > a:before {
    display: none;
  }

  .banner-content-border {
    margin-left: 0;
    margin-right: 0;
  }
  .banner-content-border {
    border-radius: 44px 44px 0 0;
    padding: 46px 40px 20px 50px;
  }
  .banner-ul-list li {
    font-size: 16px;
    line-height: 16px;
    display: flex;
  }
  ul.banner-ul-list {
    max-width: 100%;
  }
  .banner-content-border {
    margin-left: 5%;
    margin-right: 5%;
  }
  .sec-heading h2 {
    font-size: 36px;
  }
  .design-card-list,
  .design-card-list-2 {
    padding-bottom: 1rem;
  }
  br {
    display: none;
  }
  .process-wrapper h3 {
    font-size: 28px;
    line-height: 32px;
  }
  .get-started-wrapper {
    border-radius: 34px;
    padding: 32px 10px 10px;
  }
  /*.thumb {*/
  /*  width: 22%;*/
  /*}*/
  .main-img {
    width: 178px;
    height: 250px;
  }
  .awards-wrapper {
    border-radius: 36px;
    padding: 22px;
  }
  h1.banner-heading {
    font-size: 50px;
    line-height: 56px;
  }
  .service-card h3 {
    font-size: 15px;
    padding-bottom: 8px;
  }
  .service-card {
    padding: 8px;
  }
  .g-4,
  .gy-4 {
    --bs-gutter-y: 0.5rem;
  }
  .g-4,
  .gx-4 {
    --bs-gutter-x: 0.5rem;
  }
  .padding1 {
    padding-left: 4%;
  }
  .our-work-slider .slick-list.draggable {
    padding-right: 35%;
  }
  .portfolio-wrapper {
    border-radius: 26px;
    padding: 30px 16px;
  }
  .testimonial-slider {
    margin: 46px 0;
  }
  .review-card {
    gap: 1rem;
  }
  .testi-card p {
    font-size: 14px;
    line-height: 23px;
  }
  .testi-card {
    max-width: 100%;
  }
  .banner-img {
    left: 0vw;
  }
  .design-card-list li,
  .design-card-list-2 li {
    gap: 5px;
  }
  .design-card-list li span,
  .design-card-list-2 li span {
    font-size: 12px;
  }
  .testimonial-content {
    margin-left: -2vw;
  }
  .process-wrapper span.number {
    font-size: 90.13px;
  }
  section {
    padding: 36px 0;
    position: relative;
  }
  .refund-con-box-container {
    margin-top: 1rem;
  }
    .thumb {
        width: 22%;
    }
    .text-content {
        width: 35vw;
    }



}

@media only screen and (min-width: 992px) {
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* Styles */
  .thumb {
    width: 22%;
  }
    .text-content {
        width: 36vw;
    }





}
/* iPads (portrait) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* Styles */

  .pkg-list {
    grid-template-columns: repeat(2, 1fr);
  }
  header {
    padding: 1rem 0;
  }
  .banner-content {
    padding: 172px 0 20px;
  }
  span.sub-heading {
    margin-bottom: 1rem;
    font-size: 16px;
  }
  h1.banner-heading {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 1rem;
  }
  p.banner-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 26px;
  }
  .btn-wrap {
    /* flex-direction: column; */
    /* margin-bottom: 2rem; */
  }
  .btn-wrap a {
    /* width: 100%; */
    text-align: center;
  }
  .banner-img {
    display: none;
  }
  .sec-heading h2 {
    font-size: 34px;
    line-height: 37px;
  }
  .sec-heading p {
    font-size: 14px;
    line-height: 22px;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
  .header-wrap {
    margin-top: 0;
    padding: 8px 12px;
  }
  .banner-content-border {
    margin-left: 0;
    margin-right: 0;
  }
  .banner-content-border {
    border-radius: 44px 44px 0 0;
    padding: 20px 8px 8px;
  }
  .banner-ul-list li {
    font-size: 16px;
    line-height: 16px;
    display: flex;
  }
  ul.banner-ul-list {
    max-width: 100%;
  }
  .mmpopup .popup-content {
    display: none;
  }
  .mmpopup {
    padding: 30px;
  }
  .sec-heading h3 {
    font-size: 24px;
  }
  .trusted-wrapper {
    border-radius: 40px;
    padding: 22px;
  }
  .trusted-wrapper ul {
    gap: 1rem;
  }
  section.sec-1 {
    padding: 20px 0;
  }
  .design-card-list,
  .design-card-list-2 {
    padding-bottom: 1rem;
  }
  section {
    padding: 36px 0 0;
    position: relative;
  }
  br {
    display: none;
  }
  .counter-wrapper {
    gap: 3rem;
    margin-top: 2rem;
  }
  ul#counter {
    gap: 10px;
  }
  ul#counter li {
    padding: 34px;
  }
  .about-image {
    padding: 34px 8px;
  }
  .service-wrapper {
    border-radius: 35px;
    padding: 22px 15px;
  }
  .sec-heading h4 {
    font-size: 22px;
    line-height: 26px;
    padding-top: 20px;
  }
  .row.align-items-center.border-bottom {
    padding: 20px 0;
  }
  .process-wrapper span.number {
    font-size: 60px;
    top: -78px;
    left: 0;
  }
  .process-wrapper h3 {
    font-size: 22px;
    padding-bottom: 0px;
  }
  .process-wrapper p {
    font-size: 14px;
    line-height: 24px;
  }
  .dotted-line:before {
    display: none;
  }
  .dotted-line {
    margin-bottom: 2rem;
  }
  .portfolio-wrapper {
    padding: 28px 10px;
    border-radius: 20px;
  }
  .pckg .upper .title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 7px;
  }
  .pckg .upper p {
    font-size: 14px;
    line-height: 20px;
  }
  .pckg .upper .price .amount {
    font-size: 30px;
  }
  .pckg .upper .price {
    padding: 8px 0 8px;
  }
  .bottom {
    margin-top: 8px;
  }
  .pckg .bottom ul li {
    font-size: 14px;
    line-height: 18px;
  }
  .bottom span {
    font-size: 16px;
  }
  .slick-dots {
    padding: 15px 0 0;
  }
  .get-started-wrapper {
    padding: 15px;
  }
  .testimonial-slider {
    margin: 15px 0;
  }
  .slider-row {
    flex-direction: column;
    margin-left: 0vw;
  }
  .thumb {
    width: 20%;
  }
  .testimonial-content {
    margin-left: 0;
  }
  .main-img {
    width: 300px;
    height: 400px;
    margin-left: 0;
  }
  .text-content {
    font-weight: 400;
    line-height: 24px;
    width: auto;
  }
  .awards-wrapper {
    border-radius: 20px;
    background: #4837ff;
    padding: 15px;
  }
  .accordion-list li h3 {
    max-width: 94%;
  }
  .accordion-list li {
    margin-bottom: 0.5rem;
  }
  footer {
    padding: 30px 0 0;
  }
  .footer-sec p {
    font-size: 14px;
    padding: 14.5px 0;
  }
  .footer-hdng h4 {
    font-size: 16px;
    margin-bottom: 6px;
    margin-top: 20px;
  }
  .footer-text h4 {
    font-size: 20px;
    line-height: 30px;
  }
  .cards-img {
    margin-top: 20px;
  }
  .menu-Bar {
    display: block;
    top: 0px;
    right: 28px;
  }
  .image1 {
    margin-bottom: 2rem;
  }
  .padding1 {
    padding-left: 0%;
  }
  .inner-cards {
    margin-bottom: 1rem;
    height: auto;
  }
  .get-strated-card {
    height: auto;
    margin-bottom: 1rem;
  }
  .six-step-wrapper {
    border-radius: 20px;
    padding: 18px;
  }
  .trusted-card {
    height: auto;
    margin-bottom: 1rem;
  }
  .review-card {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
  }
  .testi-card {
    max-width: 100%;
  }
  .testi-card p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
  .service-wrapper .sec-heading p {
    font-size: 14px;
    line-height: 20px;
  }
  p#testimonialText {
    font-size: 16px;
    line-height: 30px;
  }
  .banner-img2 {
    display: none;
  }
  .image1 {
    display: none;
  }
  .btn-wrap .theme-btn {
    padding: 14px 8px;
  }
  .btn-wrap .theme-btn {
    font-size: 14px;
  }
  section.cta-sec {
    padding: 36px 0;
  }
  ul.social-icons {
    margin-top: 0px;
  }
  .refund-con-box-container {
    margin-top: 1rem;
  }










}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .logo img {
    max-width: 90px;
  }
  .pkg-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    padding: 1rem 0;
  }
  .banner-content {
    padding: 152px 0 20px;
  }
  span.sub-heading {
    margin-bottom: 1rem;
    font-size: 16px;
  }
  h1.banner-heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 1rem;
  }
  p.banner-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
  .banner-img {
    display: none;
  }
  .sec-heading h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .sec-heading p {
    font-size: 14px;
    line-height: 22px;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
  .header-wrap {
    margin-top: 0;
    padding: 8px 12px;
  }
  .banner-content-border {
    margin-left: 0;
    margin-right: 0;
  }
  .banner-content-border {
    border-radius: 44px 44px 0 0;
    padding: 20px 8px 8px;
  }
  .banner-ul-list li {
    font-size: 13px;
    line-height: 16px;
    display: flex;
  }
  ul.banner-ul-list {
    max-width: 100%;
  }
  .mmpopup .popup-content {
    display: none;
  }
  .mmpopup {
    padding: 30px;
  }
  .sec-heading h3 {
    font-size: 24px;
  }
  .trusted-wrapper {
    border-radius: 40px;
    padding: 22px;
  }
  .trusted-wrapper ul {
    gap: 1rem;
  }
  section.sec-1 {
    padding: 20px 0;
  }
  .design-card-list,
  .design-card-list-2 {
    padding-bottom: 1rem;
  }
  section {
    padding: 36px 0 0;
    position: relative;
  }
  br {
    display: none;
  }
  .counter-wrapper {
    flex-direction: column;
    gap: 0;
  }
  ul#counter {
    display: inline-block;
  }
  ul#counter li {
    line-height: 22px;
    padding: 22px;
    width: 47%;
    display: inline-block;
    text-align: center;
    margin: 4px;
  }
  ul#counter li.last {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .about-image {
    padding: 34px 8px;
  }
  .service-wrapper {
    border-radius: 35px;
    padding: 22px 15px;
  }
  .sec-heading h4 {
    font-size: 22px;
    line-height: 26px;
    padding-top: 20px;
  }
  .row.align-items-center.border-bottom {
    padding: 20px 0;
  }
  .process-wrapper span.number {
    font-size: 60px;
    top: -78px;
    left: 0;
  }
  .process-wrapper h3 {
    font-size: 22px;
    padding-bottom: 0px;
  }
  .process-wrapper p {
    font-size: 14px;
    line-height: 24px;
  }
  .dotted-line:before {
    display: none;
  }
  .process-image {
    display: none;
  }
  .dotted-line {
    margin-bottom: 2rem;
  }
  .portfolio-wrapper {
    padding: 28px 10px;
    border-radius: 20px;
  }
  .pckg .upper .title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 7px;
  }
  .pckg .upper p {
    font-size: 14px;
    line-height: 20px;
  }
  .pckg .upper .price .amount {
    font-size: 30px;
  }
  .pckg .upper .price {
    padding: 8px 0 8px;
  }
  .bottom {
    margin-top: 8px;
  }
  .pckg .bottom ul li {
    font-size: 14px;
    line-height: 18px;
  }
  .bottom span {
    font-size: 16px;
  }
  .slick-dots {
    padding: 15px 0 0;
  }
  .get-started-wrapper {
    padding: 15px;
  }
  .testimonial-slider {
    margin: 15px 0;
  }
  .slider-row {
    flex-direction: column;
    margin-left: 0;
  }
  /*.thumb {*/
  /*  width: 9%;*/
  /*}*/
  .testimonial-content {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-left: 0;
  }
  .main-img {
    width: auto;
    height: auto;
    margin-left: 0;
  }
  .text-content {
    font-weight: 400;
    line-height: 24px;
    width: auto;
  }
  .awards-wrapper {
    border-radius: 20px;
    background: #4837ff;
    padding: 15px;
  }
  .accordion-list li h3 {
    max-width: 94%;
  }
  .accordion-list li {
    margin-bottom: 0.5rem;
  }
  footer {
    padding: 30px 0 0;
  }
  .footer-sec p {
    font-size: 14px;
    padding: 14.5px 0;
  }
  .footer-hdng h4 {
    font-size: 16px;
    margin-bottom: 6px;
    margin-top: 20px;
  }
  .footer-text h4 {
    font-size: 20px;
    line-height: 30px;
  }
  .cards-img {
    margin-top: 20px;
  }
  .menu-Bar {
    display: block;
    top: 0px;
    right: 28px;
  }
  .image1 {
    margin-bottom: 2rem;
  }
  .padding1 {
    padding-left: 0%;
  }
  .inner-cards {
    margin-bottom: 1rem;
    height: auto;
  }
  .get-strated-card {
    height: auto;
    margin-bottom: 1rem;
  }
  .six-step-wrapper {
    border-radius: 20px;
    padding: 18px;
  }
  .trusted-card {
    height: auto;
    margin-bottom: 1rem;
  }
  .review-card {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
  }
  .testi-card {
    max-width: 100%;
  }
  .testi-card p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
  .image1 {
    display: none;
  }
  .banner-img2 {
    display: none;
  }
  .refund-con-box-container {
    margin-top: 1rem;
}



}

.leadforms-step-title,
.leadforms-step-instruction {
  display: none !important;
}
.leadforms-form-body-wrapper .leadforms-form-body-bg-color {
  background: transparent !important;
}
.leadforms-form-body-wrapper .leadforms-form-body {
  padding: 34px 0 0 !important;
}
