/*Main Css */
:root {
  --primary: #fd6801;
  --bg-light: #ffdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;
  --font-heading: "Quincy CF", sans-serif;
  --font-accent: "Open Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
  background: #000000;
  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: #000000;
}

/* 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: #222525;
}
body.inner-header {
  padding-top: 150px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  display: block;
  font-weight: 400;
  color: #000;
}

*: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;
}

/*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: absolute;
  background: transparent;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
}
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
}
a:hover {
  color: #000;
}
/* 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;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.header-btn {
  background: var(--primary);
  color: white !important;
  padding: 17px 30px;
  font-weight: 700 !important;
  font-size: 24px !important;
  line-height: 24px !important;
  border-radius: 5px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.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);
  }
}

@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: bottom;
  background-repeat: no-repeat;
  position: relative;
}
.shopifybadge {
    position: absolute;
    top: 20vh;
    right: 4vw;
}
.banner-content {
  padding: 176px 0 72px;
}
h1.banner-heading {
  margin-bottom: 16px;
  font-size: 60px;
  line-height: 60px; /* 116.667% */
}
span.sub-heading {
  font-size: 18px;
  line-height: 22px;
  color: var(--primary);
  font-weight: 500;
}
p.banner-text {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 40px; /* 150% */
}
.menu-wrap {
  border-radius: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20.3px);
  padding: 18.5px 35px;
}
.main-header {
  padding-top: 40px;
}
.banner-content ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-heading h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
}
.sec-1 {
  background: #f9f9f9;
  padding: 35.15px 0;
}
ul.trusted-clients {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  text-align: center;
  justify-content: center;
}
.successful-projects h3 {
  color: #26282c;
  font-size: 42px;
  line-height: normal;
  letter-spacing: -0.84px;
  padding-bottom: 20px;
}
.successful-projects p {
  color: #222525;
  font-size: 16px;
  line-height: 24px; /* 150% */
}
.successful-projects ul li {
  color: #222525;
  font-size: 16px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 12px;
}
.successful-projects ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 31px;
  margin-bottom: 45px;
}
section.sec-5 {
  border-radius: 30px 30px 0px 0px;
  background: #fd6801;
}
.sec-4 img.vector1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.store-card h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.4px;
  padding-bottom: 30px;
}
.store-card p {
  color: #000;
  font-size: 24px;
  line-height: 30px; /* 168.75% */
}
.store-card .btn-wrap {
  margin: 48px 0 0;
}
.store-card-image video {
    width: 100%;
    height: 100%;
}
section.sec-6 {
  background: #f4f4f4;
}

section.sec-8 {
  background: var(--primary);
}
.process-card ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.process-card ul {
  list-style: disc;
  margin-left: 21px;
  padding: 24px 0;
}
.process-wrap .line.last {
  display: none;
}
.theme-btn.popstatic.bg-black {
  background: #000;
}

/* lp-css */
.mBanner-form .mBanner-fFeild input,
.mBanner-form .mBanner-fFeild select,
.mBanner-form .mBanner-fFeild textarea {
  width: 100%;
  height: 50px;
  padding: 12px 25px;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #666666;
  transition: all 0.4sease-in-out;
}
.mBanner-form.from2 .mBanner-fFeild input,
.mBanner-form.from2 .mBanner-fFeild select,
.mBanner-form.from2 .mBanner-fFeild textarea {
  border: 1px solid #e6e6e6;
}
.mBanner-form .row {
  row-gap: 20px;
}
.mBanner-form .mBanner-fFeild input,
.mBanner-form .mBanner-fFeild select,
.mBanner-form .mBanner-fFeild textarea {
  width: 100%;
  height: 50px;
  padding: 15px 25px;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #0b0b0b;
  transition: all 0.4s ease-in-out;
}
.mBanner-form .mBanner-fFeild input:hover,
.mBanner-form .mBanner-fFeild select:hover,
.mBanner-form .mBanner-fFeild textarea:hover {
  border-color: #f45a28;
}
.mBanner-form .mBanner-fFeild input:focus,
.mBanner-form .mBanner-fFeild select:focus,
.mBanner-form .mBanner-fFeild textarea:focus {
  border-color: #00b67a;
}
.mBanner-form .mBanner-fFeild textarea {
  height: 75px !important;
  resize: none;
}
.mBanner-form .mBanner-fBtnGroup {
  display: flex;
  align-items: center;
  gap: 24px;
}
.mBanner-form .mBanner-fBtnGroup .mBanner-fBtn button,
.mBanner-form .mBanner-fBtnGroup .mBanner-fBtn input {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  padding: 20px 42px;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  background: #f45a28;
  box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
  border: 0;
}
.mBanner-form .mBanner-fBtnGroup .mBanner-fBtn button:hover,
.mBanner-form .mBanner-fBtnGroup .mBanner-fBtn input:hover {
  background-color: #00b67a;
}
.mBanner-form .mBanner-fBtnGroup .mBanner-fChat a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mBanner-form .mBanner-fBtnGroup .mBanner-fChat a span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.mBanner-form .mBanner-fBtnGroup .mBanner-fChat a span i {
  font-size: 1.2em;
  padding-left: 3px;
  color: #00b578;
}
.mBanner-form .mBanner-fBtnGroup .mBanner-fChat a b {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.4s ease-in-out;
}
.mBanner-form .mBanner-fBtnGroup .mBanner-fChat a:hover b {
  color: #fff;
}

h1.banner-heading span {
  color: #00b578;
}
.banner-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 22px;
}
.banner-content ul li i.fas.fa-angle-right {
  color: #fecd00;
}
.sec-heading h2 span {
  color: #00b578;
}
.chatBtn {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.chatBtn span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.chatBtn b {
  font-size: 24px;
  color: #000;
  font-weight: 700;
}
section.sec-3 {
  background: #000;
}

/* packages */
.pckg-sec {
  background: #000;
}
.package {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100%;
  border-radius: 15px;
  border: 1px solid #414141;
  background: #1b1b1b;
}
.package .package-type {
  padding: 12px 30px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  width: fit-content;
  height: fit-content;
  border-radius: 10px;
  background: #313131;
}
.package-price {
  color: #fff;
  font-family: var(--font-body);
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 47px; /* 67.143% */
  margin: 30px 0 20px;
}
.package-discount {
  color: #9dabad;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 43px;
}
.package-discount span {
  color: #36f4a4;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px; /* 215% */
}

.package-desc {
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  padding: 25px 0;
}
.package-btn {
  border-radius: 5px;
  background: #fff;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  color: #010b09;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  border: none;
}
.package-deliverable {
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-deliverable h2 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px; /* 195.833% */
  margin: 25px 0;
}
.package-deliver-lists {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 264px;
  padding: 0 10px 10px 0;
  overflow-y: auto;
}
.package-deliver-lists li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.package-deliver-lists i {
  font-size: 17px;
  color: #00b578;
}
.package-deliver-lists p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
}
.package-contact {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 25px;
}
.package-contact i {
  color: #00b578;
  font-size: 20px;
}
.package-contact h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.package-contact:hover h3 {
  color: var(--primary);
}
.package:hover .package-btn {
  background: var(--primary);
}
.package.allinone-package {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.all-in-one-list ul.package-deliver-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  gap: 1rem;
}
.all-in-one-package {
  width: 417px;
}
.all-in-one-list {
  width: 800px;
}
.all-in-one {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* packages */

section.cta-sec {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.customer-review p {
  color: #fff;
  font-size: 22.628px;
  line-height: normal;
  text-align: center;
}
.adv-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 47px;
}
.advantages-card {
  display: flex;
  align-items: center;
  gap: 32px;
}
.advantages-card span {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.274px; /* 121.976% */
}

.sec-heading ul li {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-heading ul {
  margin-top: 30px;
}
section.testimonilas-sec {
  background: #000;
}
.social-video-content2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 15.298px;
}
/* Accordian */
.accordion2 {
  position: relative;
}
.accordion2 li {
  padding: 20px 24px 30px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  background: white;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  border-bottom: 1px solid #bdbdbd;
}
ul.accordion2 li span {
  display: flex;
  position: relative;
}
.accordion2 li h3 {
  color: #303a42;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1px;
  max-width: 90%;
}
ul.accordion2 li h3:after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
  right: 0;
  color: #9ca3af;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  font-weight: 300;
  top: 0;
}
ul.accordion2 li.active h3:after {
  content: "\f068";
}
.accordion2 .answer p {
  margin-top: 0;
  width: 100%;
  color: #303a42;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.accordion2 .answer {
  padding: 18px 0 0;
}
/* Accordian */

/* Accordian */
.accordion-list {
  position: relative;
  margin-top: 38px;
}
.accordion-list li {
  padding: 30px 30px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.07);
  border-bottom: 1.149px solid #e4e4e4;
  margin-bottom: 20px;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  display: flex;
  gap: 16px;
  color: #000;
  font-size: 30px;
  font-weight: 400;
  line-height: 10.099px;
  align-items: center;
  padding-bottom: 0;
}
.answer p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px; /* 125% */
}
.accordion-list li h3 strong {
  font-size: 90px;
}
.answer {
  display: flex;
  align-items: center;
  gap: 16rem;
  justify-content: center;
  padding: 10px 0 0 46px;
}
.answer .btn-wrap {
  margin: 22px 0 0;
}
.answer .btn-wrap .theme-btn {
  padding: 15.5px 28px;
  font-size: 16px;
}
.store-card-image p {
  color: #333;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.24px;
  padding-top: 36px;
}
.store-card-image p strong {
  font-weight: 700;
  color: #030603;
}
/* Accordian */

/* Sec Headings */
.sec-heading.center {
  text-align: center;
}
.sec-heading h2 {
  font-size: 70px;
  line-height: 63px;
}
.sec-heading.white h2 {
  color: white;
}
.sec-heading p {
  margin: 1rem 0;
  color: #333;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}
.sec-heading .sub-heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: var(--primary);
  margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
  padding: 3rem 0;
  position: relative;
}
.padding-2 {
  padding: 1rem 0;
}
/* sections */

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}
.theme-btn {
  padding: 15.5px 40px;
  color: white;
  border: 1px solid var(--primary);
  transition: 0.5s ease;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  border-radius: 5px;
  background: #f45a28;
  box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.btn-wrap .theme-btn.bordered {
  background: transparent;
  color: var(--black);
  border: transparent;
  padding: 15px 10px;
  font-size: 16px;
}
.theme-btn:hover {
  transform: scale(1.03);
}
/* Theme Buttons */

/* -------------------------contact us-------------------------- */
section.form-sec {
  background: #033423;
  padding: 45px 0;
}
.input-field1 label {
  color: #fff;
  font-size: 20px;
}
.input-field1 input,
.input-field1 textarea {
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  color: #fff;
  padding: 5px 14px 5px 0;
  outline: none !important;
  margin-bottom: 30px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  background: transparent;
}
.send {
  text-align: left;
  padding-top: 0;
}
.send input[type="submit"] {
  cursor: pointer;
  transition: 0.4s ease;
  text-transform: capitalize;
  border: 0;
  padding: 20px 50px;
  border-radius: 90px;
  background: #f8761f;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 24px; /* 80% */
}
.details h5 {
  font-size: 18px;
  padding-bottom: 20px;
  color: #202529;
}
.details a {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.details {
  margin-bottom: 40px;
}
.social-icons li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 18px;
  height: 40px;
  width: 40px;
  background: #008576;
  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: #008576;
  padding-right: 12px;
}
.detail-text p {
  color: #fff;
  font-size: 24px;
  line-height: 30px; /* 125% */
}
.detail-text p a {
  color: #cbfb45;
}
.detail-text {
  margin-top: 30px;
  margin-right: -50px;
}
.form-image {
  position: absolute;
  top: -16%;
}
.client-reviews {
  margin-bottom: 1rem;
}
.social-video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.social-video-wrapper video {
  width: 100%;
  height: 100%;
}
.social-video-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 30px;
  border-radius: 15.298px;
  background: #fd5a1e;
}
.social-video-content h1 {
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-size: 75px;
  font-style: normal;
  font-weight: 800;
  line-height: 81.905px; /* 89.233% */
}
.social-video-content p {
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.65px; /* 145.172% */
}
.project-image {
  width: 118%;
}
/* -------------------------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: 5px solid #fff;
  padding: 12px;
}
.mmpopup .popup-content {
  padding: 50px 40px;
  width: 100%;
  max-width: 500px;
  border-radius: 29px;
  background: #fff;
  box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(33.75px);
  overflow: hidden;
}
.mmpopup .formpop {
  width: 100%;
  margin-top: 60px;
}
.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;
}
.mmpopup .centercont h4 {
  font-size: 20px;
  color: #566060;
  margin-bottom: 15px;
}
.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: 35px;
  color: #659640;
}
.mmpopup .centercont h3 {
  font-size: 50px;
  font-weight: 400;
  color: #0085ff;
}
.mmpopup .centercont h3 span {
  color: #000;
  font-family: var(--font-body);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.mmpopup .centercont h4 span {
  font-weight: 700;
  color: #000;
  font-size: 60px;
}
.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: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 16px;
  width: 100%;
}
.fld-btn button.banner-btn {
  border: 4px solid #f45a28;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 5px;
  background: #f45a28;
  box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
  padding: 56px 0;
  background: #000;
}
.footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
.footer-logo-container {
  display: flex;
  padding: 0 30px 0 30px;
}
.footer-logo-container div:not(:last-child) {
  border-right: 1px solid #fff;
  padding-right: 36px;
}
.footer-logo-container div h4 {
  color: #9dabad;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
  font-family: "Open Sans";
}
.footer-logo-container div p,
.footer-logo-container div a {
  color: #9dabad;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}
.footer-images-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 97px;
  padding: 10px;
  justify-content: space-around;
  width: 80%;
  margin: 45px auto 0;
  border: 2px solid #fff;
}
.stars-desc-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stars-desc {
  display: flex;
  gap: 10px;
}
.stars-desc h2 {
  padding-right: 10px;
  border-right: 1px solid #fff;
  color: #fff;
  font-size: 34.847px;
  font-weight: 400;
  line-height: 119.5%; /* 41.642px */
}
.stars-desc img {
  object-fit: contain;
}
.stars-desc-container p {
  color: #fff;
  font-size: 13.115px;
  font-weight: 400;
  /* 15.672px */
}
.footer-review-container {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.footer-review-container p {
  font-size: 21.468px;
  line-height: normal;
  color: #6e7b81;
}

.copyright-sec {
  background: #292929;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.copyright p,
.copyright a {
  color: white;
  font-size: 12px;
}
.footer-social-icons {
  display: flex;
  gap: 3rem;
}
/* ----------------------------------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 .list-ul {
  list-style: disc;
  margin-left: 24px;
}
.terms ul {
  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: 28px;
  font-weight: 500;
  margin: 2rem 0 2rem;
}
.terms p {
  margin-bottom: 1rem;
}
/* terms */

.portfolio-page-nav {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-page-nav .logo {
  max-width: 240px;
}
.portfolio-page-nav .back-btn {
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.portfolio-viewframe {
  width: 100vw;
  min-height: 100dvh;
}

section.guarantee-sec {
    padding: 6rem 0 4rem;
}
.guarantee-bg {
    background: #1E252E;
    border-radius: 14px;
    padding: 4rem 6rem 2rem;
}
.money-back-image {
    margin-top: -172px;
    margin-bottom: 22px;
}
.mn-hd {
    margin-bottom: 20px;
}
.mn-hd h4 {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: #2D2D2D;
}
.guarantee-bg p.para {
    font-size: 22px;
    margin: 14px 0;
    line-height: 26px;
}

.userBelowCard {
  padding: 13px;
  border-radius: 8px;
  border: 2px solid #000;
  background: #FFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}
.userBelowCard:hover {
  transform: scale(1.01);
  box-shadow: 0px 15px 15px 20px rgba(176, 176, 176, 0.14);
}
.userBelowCard .cardHead {
  display: flex;
  justify-content: space-between;
}
.userBelowCard .cardHead .userDetail {
  display: flex;
  align-items: center;
  gap: 7px;
}
.userBelowCard .cardHead .userDetail .userProfile img {
  width: 25px;
  height: 25px;
  border-radius: 25px;
}
.userBelowCard .cardHead .userDetail .userName {
  display: flex;
  flex-direction: column;
}
.userBelowCard .cardHead .userDetail .userName h6 {
  color: #3C3C3B;
  font-family: "Inter";
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.userBelowCard .cardHead .userDetail .userName p {
  color: #9E9D9D;
  font-family: "Inter";
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
}
.userBelowCard .card-Body {
  padding-top: 15px;
  padding-bottom: 20px;
}
.userBelowCard .card-Body .bodyText {
  padding-bottom: 18px;
  padding-right: 15px;
}
.userBelowCard .card-Body .bodyText p {
  color: #3C3C3B;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.userBelowCard .card-Body .bodyImg {
  padding-right: 20px;
}
.userBelowCard .card-Foot {
  padding-right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .shopifybadge {
    display: none;
  }
  header {
    padding: 1rem 0;
  }
  .btns {
    margin: 1.5rem 0;
  }
  .dropdown {
    position: unset;
    box-shadow: none;
    width: 100%;
    background: #f0f8ff80;
  }
  .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;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    /* right: 0; */
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    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: #333;
    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;
  }
  .menu-wrap {
    padding: 0;
    width: 100%;
  }
  .package {
    padding: 25px 15px;
  }
  .sec-heading p {
    font-size: 24px;
    line-height: 32px;
  }
  .advantages-card span {
    font-size: 18px;
    line-height: 24.274px;
  }
  .store-card-image p {
    font-size: 18px;
    line-height: 26px;
    padding-top: 16px;
  }
  .accordion2 li h3 {
    font-size: 26px;
    line-height: 32px;
    max-width: 90%;
  }
  section.form-sec {
    background-position: bottom;
  }
  .sec-heading h2 {
    font-size: 60px;
    line-height: 60px;
  }
  .social-video-content2 {
    bottom: 0;
    left: 0;
    padding: 8px;
}



}

@media (max-width: 1025px) {
  .btn-wrap .theme-btn {
    font-size: 16px;
  }
  .overlap-slider {
    /* width: 180%; */
    width: 100%;
    position: relative;
  }
}
@media (max-width: 992px) {
  .social-video-content {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    padding: 10px;
  }
  .social-video-content h1 {
    font-size: 40px;
    line-height: 1.2; /* 89.233% */
  }
  .social-video-content p {
    font-size: 16px;
    line-height: 1.4; /* 145.172% */
  }
  .social-video-content2 {
    bottom: 0;
    left: 0;
    padding: 8px;
}




}

/* 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 */

  .mainBanner {
    background-position: top;
  }
  ul.trusted-clients {
    gap: 1rem;
  }
  .sec-heading h2 {
    font-size: 50px;
    line-height: 46px;
  }
  .sec-heading p {
    font-size: 20px;
    line-height: 30px;
  }
  .package {
    padding: 18px 16px;
  }
  .package .package-type {
    padding: 12px 18px;
    font-size: 18px;
  }
  .package-deliverable h2 {
    font-size: 22px;
    line-height: 40px;
    margin: 10px 0;
  }
  .all-in-one {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  .advantages-card span {
    font-size: 16px;
    line-height: 22.274px;
  }
  .advantages-card {
    gap: 20px;
  }
  .adv-wrapper {
    margin-top: 24px;
  }
  .store-card p {
    font-size: 21px;
    line-height: 32px;
  }
  .store-card-image p {
    font-size: 18px;
    line-height: 26px;
    padding-top: 12px;
  }
  .accordion-list li h3 {
    font-size: 26px;
  }
  .accordion2 li h3 {
    font-size: 26px;
    line-height: 30px;
    max-width: 90%;
  }
  section.form-sec {
    background-position: center;
  }
  .footer-logo-container {
    gap: 5rem;
  }
  .footer-images-container {
    width: 100%;
  }
  .social-video-content2 {
    bottom: 0;
    left: 0;
    padding: 8px;
}







}
/* 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: 100px 0 20px;
  }
  span.sub-heading {
    margin-bottom: 1rem;
    font-size: 16px;
  }
  h1.banner-heading {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 1rem;
  }
  p.banner-text {
    max-width: 100%;
    font-size: 22px;
    line-height: 32px;
  }
  .banner-img {
    display: none;
  }
  .sec-heading h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .sec-heading p {
    font-size: 22px;
    line-height: 34px;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
  .main-header {
    padding-top: 0;
  }
  .banner-content ul {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  .banner-content ul li {
    font-size: 20px;
  }
  .mainBanner {
    background-position: left;
  }
  .sec-1 {
    padding: 18.15px 0;
  }
  ul.trusted-clients {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .successful-projects h3 {
    font-size: 36px;
    padding-bottom: 10px;
    margin-top: 20px;
  }
  .successful-projects ul {
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 30px;
  }
  .project-image {
    display: none;
  }
  .package {
    padding: 20px 16px;
  }
  .package .package-type {
    font-size: 20px;
  }
  .package.allinone-package {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .all-in-one-package {
    width: auto;
  }
  .all-in-one {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  .all-in-one-list {
    width: auto;
  }
  .all-in-one-list ul.package-deliver-lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .package-deliverable h2 {
    font-size: 22px;
    margin: 8px 0;
  }
  .port-card {
    text-align: center;
    margin-bottom: 1rem;
  }
  .customer-review p {
    font-size: 18.628px;
  }
  .adv-wrapper {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
    gap: 1rem;
  }
  .advantages-card {
    gap: 20px;
  }
  .advantages-card span {
    font-size: 20px;
  }
  .store-card-image p {
    font-size: 18px;
    margin-bottom: 2rem;
  }
  .store-card p {
    font-size: 16px;
  }
  .accordion-list li {
    padding: 30px 16px;
  }
  .accordion-list li h3 {
    font-size: 26px;
  }
  .accordion2 li h3 {
    font-size: 24px;
    line-height: 32px;
    max-width: 90%;
  }
  .accordion2 li {
    padding: 20px 13px 20px;
  }
  ul.accordion2 li h3:after {
    font-size: 20px;
  }
  .input-field1 label {
    font-size: 15px;
  }
  .form .sec-heading h2 {
    margin: 0 0 2rem;
  }
  .send input[type="submit"] {
    padding: 18px 36px;
    font-size: 18px;
  }
  .detail-text p {
    font-size: 18px;
  }
  .detail-text {
    margin-top: 18px;
    margin-right: 0;
  }
  .footer-logo-container {
    /* flex-direction: column; */
    padding: 0;
    /* gap: 2rem; */
  }
  .footer-social-icons {
    flex-direction: column;
    gap: 1rem;
  }
  section.form-sec {
    margin-bottom: 0;
  }
  .footer-images-container {
    /* flex-direction: column; */
    margin: 0;
    width: 100%;
    gap: 1rem;
    border: 0;
    margin-top: 1rem;
  }
  .footer-review-container p {
    font-size: 18.468px;
  }
  footer {
    padding: 30px 0;
  }
  .copyright p,
  .copyright a {
    font-size: 14px;
    text-align: center;
    line-height: 24px;
  }
  .mmpopup .popup-content {
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }
  .mmpopup .centercont h3 span {
    font-size: 26px;
  }
  .mmpopup .form-group-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 16px;
  }
  .form-group.field {
    margin-bottom: 14px;
  }
  .mmpopup .form-text {
    font-size: 16px;
  }
  .mmpopup .formpop {
    margin-top: 26px;
  }
  .fld-btn button.banner-btn {
    font-size: 16px;
  }
  .terms h4 {
    font-size: 25px;
    margin: 1rem 0 1rem;
    line-height: 30px;
  }
  section.cta-sec {
    background-position: inherit;
  }
  .footer-logo-container div:not(:last-child) {
    border-right: 0;
    padding-right: 0;
  }
  .social-video-content2 {
    bottom: 0;
    left: 0;
    padding: 8px;
}













}

/* iPhone 6-8 Plus */
@media only screen and (min-width: 414px) and (max-width: 736px) and (orientation: portrait) {
  /* Styles */
}
@media only screen and (min-width: 414px) and (max-width: 736px) and (orientation: landscape) {
  /* Styles */
}

/* iPhone 6-8  */
@media only screen and (min-width: 375px) and (max-width: 667px) and (orientation: portrait) {
  /* Styles */
}
@media only screen and (min-width: 375px) and (max-width: 667px) and (orientation: landscape) {
  /* Styles */
}

/* Android (Pixel 2) */
@media only screen and (min-width: 412px) and (max-width: 684px) and (orientation: portrait) {
  /* Styles */
}
@media only screen and (min-width: 412px) and (max-width: 684px) and (orientation: landscape) {
  /* Styles */
}

/* Iphone X */
@media only screen and (min-width: 375px) and (max-width: 734px) and (orientation: portrait) {
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .portfolio-page-nav .header-btn {
    flex-direction: row-reverse;
  }
  .portfolio-page-nav .header-btn {
    display: none !important;
  }
  .pkg-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    padding: 1rem 0;
  }
  .banner-content {
    padding: 100px 0 20px;
  }
  span.sub-heading {
    margin-bottom: 1rem;
    font-size: 16px;
  }
h1.banner-heading {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}
  p.banner-text {
    text-align: center;
    max-width: 100%;
    font-size: 16px;
    line-height: 25px;
  }
  .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: 26px;
    line-height: 34px;
    text-align: center;
  }
  .sec-heading p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
  .main-header {
    padding-top: 0;
  }
  .banner-content ul {
    /* grid-template-columns: repeat(1, 1fr); */
    margin-bottom: 20px;
    columns: 150px;
    display: block;
  }
  .banner-content ul li {
    font-size: 16px;
  }
  .mBanner-fBtnGroup {
    flex-direction: column;
  }
  .mainBanner {
    background-position: left;
  }
  .sec-1 {
    padding: 18.15px 0;
  }
  ul.trusted-clients {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .successful-projects h3 {
    font-size: 26px;
    padding-bottom: 0;
    margin-top: 20px;
    text-align: center;
  }
  .successful-projects p {
    text-align: center;
  }
  .successful-projects ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 30px;
  }
  .project-image {
    display: none;
  }
  .package {
    padding: 20px 16px;
  }
  .package .package-type {
    font-size: 20px;
  }
  .package.allinone-package {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .all-in-one-package {
    width: auto;
  }
  .all-in-one {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  .all-in-one-list {
    width: auto;
  }
  .all-in-one-list ul.package-deliver-lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .package-deliverable h2 {
    font-size: 22px;
    margin: 8px 0;
  }
  .port-card {
    text-align: center;
    margin-bottom: 1rem;
  }
  .customer-review p {
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .customer-review p img {
    display: block;
  }
  .adv-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 28px;
    gap: 1rem;
  }
  .advantages-card {
    gap: 20px;
    flex-direction: column;
  }
  .advantages-card img, .customer-review p img {
    filter: drop-shadow(2px 4px 6px #000);
}
  .advantages-card span {
    font-size: 20px;
  }
  .store-card-image p {
    font-size: 18px;
    margin-bottom: 2rem;
    text-align: center;
  }
  .store-card p {
    font-size: 16px;
    text-align: center;
  }
  .accordion-list li {
    padding: 30px 16px;
  }
  .accordion-list li h3 {
    font-size: 26px;
  }
  .accordion2 li h3 {
    font-size: 20px;
    line-height: 24px;
    max-width: 90%;
  }
  .accordion2 li {
    padding: 20px 13px 20px;
  }
  ul.accordion2 li h3:after {
    font-size: 20px;
  }
  .input-field1 label {
    font-size: 15px;
  }
  .form .sec-heading h2 {
    margin: 0 0 2rem;
  }
  .send input[type="submit"] {
    padding: 18px 36px;
    font-size: 18px;
  }
  .detail-text p {
    font-size: 18px;
  }
  .detail-text {
    margin-top: 18px;
    margin-right: 0;
  }
  .footer-logo-container {
    flex-direction: column;
    padding: 0;
    gap: 2rem;
  }
  .footer-social-icons {
    flex-direction: column;
    gap: 1rem;
  }
  section.form-sec {
    margin-bottom: 0;
    background-position: bottom left;
  }
  .footer-images-container {
    flex-direction: column;
    margin: 0;
    width: 100%;
    gap: 1rem;
    border: 0;
    margin-top: 2rem;
  }
  .footer-review-container p {
    font-size: 18.468px;
  }
  footer {
    padding: 30px 0;
  }
  .copyright p,
  .copyright a {
    font-size: 14px;
    text-align: center;
    line-height: 24px;
  }
  .mmpopup .popup-content {
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }
  .mmpopup .centercont h3 span {
    font-size: 26px;
  }
  .mmpopup .form-group-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 16px;
  }
  .form-group.field {
    margin-bottom: 14px;
  }
  .mmpopup .form-text {
    font-size: 16px;
  }
  .mmpopup .formpop {
    margin-top: 26px;
  }
  .fld-btn button.banner-btn {
    font-size: 16px;
  }
  .terms h4 {
    font-size: 25px;
    margin: 1rem 0 1rem;
    line-height: 30px;
  }
  .social-video-content2 {
    bottom: 0;
    left: 0;
    padding: 8px;
}
.sec-heading h3 {
    text-align: center;
    margin-bottom: 1.5rem; 
}
.section.cta-sec {
    background-position: left;
}
.footer-logo-container div:not(:last-child) {
    border: none;
}
section.cta-sec {
    background-position: 15%;
}






}
