
/*Main Css */
:root {
  --primary: #0e5191;
  --bg-light: #ffdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;
  --font-heading: "Satoshi", sans-serif;
  --font-accent: "MavenPro", sans-serif;
  --font-body: "MavenPro", sans-serif;
  --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
  background: #0dcaf0ba;
  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: #0dcaf0ba;
}

/* 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: #000000;
}

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: 30px;
  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: #b6b9fc;
  width: 55px;
}

/*header css*/
header {
  position: fixed;
  z-index: 4;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
    0px 2px 4px -1px rgb(0 0 0 / 6%);
  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: end;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
}

/* 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: 16px 0 16px 15px;
}
.menu > li > a {
  display: block;
  font-size: 16px;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 500;
}
.header-btn {
  background: var(--primary);
  color: white !important;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400 !important;
}
.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: white;
  /* 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;
}

@keyframes slide {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.dropdown .dropdown {
  left: 100%;
  top: 0;
}
.dropdown ul li a {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  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: 40%;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
h1.banner-heading {
  font-size: 57px;
  line-height: 59px;
  margin: 1rem 0px;
  color: #171717;
  font-weight: 700;
}
span.sub-heading {
  font-size: 18px;
  line-height: 22px;
  color: #0E5191;
  font-weight: 500;
  position: relative;
  z-index: 0;
  padding-left: 30px;
}
p.banner-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 1rem;
  color: #171717;
}

/* Accordian */
.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 30px 35px 30px 30px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
ul.accordion-list li h3:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: -0.7vw;
  color: #080808;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  font-weight: 700;
  top: -5px;
  background: #fff;
  border-radius: 30px;
  padding: 2px 5px;
}
.accordion-list li.active h4::after {
  color: #9ca3af;
  content: "\f077";
}
ul.accordion-list li.active h3:after {
  content: "\f077";
}
.answer p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border-top: 1px solid #7cbaeb;
  padding-top: 10px;
  width: 95%;
}
/* Accordian */

/* 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);
}


.mmpopup .formpop {
  width: 100%;
  margin: 24px auto;
}
.mmpopup .fld-input {
  height: 50px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.mmpopup .centercont h4 {
  font-size: 20px;
  color: #566060;
  margin-bottom: 15px;
}

.mmpopup .centercont h4 span span {
  display: none;
}
.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: #0085ff;
}
.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::placeholder {
  color: #737373;
  font-weight: 400;
}
.fld-btn button {
  border-radius: 5px;
  background-color: var(--primary);
  width: 100%;
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  cursor: poRoboto;
  transition: 0.5s;
  font-family: "Inter";
  height: 59px;
  cursor: pointer;
  border: 0;
}
.fld-btn button i {
  padding-left: 12px;
}
.fld-btn button:hover {
  transform: scale(1.03);
}
/* popup */

/* 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;
  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: 42px 26px 20px;
}
.pckg .btn-chat {
  position: relative;
  left: 110px;
}
.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: 26px;
  line-height: 34px;
  margin-bottom: 1rem;
  color: #2d2d2d;
}
.pckg .upper .starting-in {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}
.pckg .upper p {
  font-size: 17px;
  line-height: 26px;
  color: #6e6e6e;
  margin-bottom: 1.5rem;
}
.pckg .upper .price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
}
.pckg .upper {
  border-bottom: 1px solid #e5e7eb;
}
.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::before {
  content: "";
  font-family: var(--icon);
  content: "\f00c";
  font-weight: 800;
  color: #1c2e59;
  margin-right: 12px;
}
.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 {
}
/*------add-css------*/
.pckg.popular {
  background: #283068;
  transform: scale(1.03);
}
.pckg.popular .title {
  color: #fff;
}
.pckg.popular p {
  color: #fff;
}
.pckg.popular .uspto {
  color: #fff !important;
}
.pckg.popular .bottom span {
  color: #fff;
}
.pckg.popular .bottom ul li {
  color: #fff;
}
.pckg.popular .btn-wrap .theme-btn {
  background: #fbbf24 !important;
  color: #000 !important;
  padding: 16px 24px;
}
.pckg.popular .amount {
  color: #fbbf24 !important;
}
.pckg.popular .bottom ul li::before {
  color: #fbbf24;
}
/* packages */

/* Sec Headings */
.sec-heading {
  margin-bottom: 2.5rem;
}
.sec-heading.center {
  text-align: center;
}
.sec-heading h2 {
  color: #171717;
  font-size: 42px;
  font-weight: 700;
  margin-top: 1rem;
}
.sec-heading.white h2 {
  color: white;
}
.sec-heading p {
  color: #171717b3;
  font-size: 18px;
  width: 65%;
  font-weight: 400;
  line-height: 24px;
  margin: auto;
  margin-top: 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;
}
.btn-wrap .theme-btn {
  padding: 8px 10px 8px 25px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  border: 2px solid var(--primary);
  transition: 0.5s ease;
  border-radius: 200px;
  border: 1px solid rgba(14, 81, 145, 0.3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.btn-wrap .theme-btn.bordered {
  color: var(--primary);
  padding: 8px 10px 8px 25px;
  font-size: 16px;
  border-radius: 200px;
  border: 1px solid rgba(14, 81, 145, 0.3);
  background: rgba(14, 81, 145, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-wrap .theme-btn:hover {
  transform: scale(1.03);
}
/* 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 */

.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;
}
/* footer */

/* Portfolio  */
.mt-200 {
  margin-top: 200px;
}
.port-slide .det {
  padding: 10px;
  background: white;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.port-slide .det span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-heading);
}
.port-slide .det a {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #31a8fe;
  /* text-decoration: underline; */
  border-bottom: 1px solid;
}
.portfolio-slider {
  position: relative;
  /* display: flex; */
  /* align-items: center; */
}
.portfolio-slider .port-slide img {
  /* width: 100%; */
  object-fit: cover;
}
a.arrow-btn {
  position: absolute;
  top: calc(50% - 54px);
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  font-size: 24px;
  color: #333;
  box-shadow: 0px 1.32566px 14px rgba(0, 0, 0, 0.08);
}
.portfolio-slider a.arrow-btn.right.slick-arrow {
  right: 8%;
}
.portfolio-slider a.arrow-btn.left.slick-arrow {
  left: 8%;
}
/* Portfolio  */

/* Testimonials */
.testimonials {
  background: #002c4f;
  position: relative;
  /* color: white; */
  padding-bottom: 100px;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  background: url("../images/testi.webp") no-repeat;
  width: 300px;
  height: 100%;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.rating span {
  color: #34a585;
  font-weight: 500;
  font-size: 50px;
  line-height: 30px;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.rating p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: white;
}
.rating {
  margin-bottom: 50px;
}
.testi-card {
  background: white;
  padding: 30px;
  box-shadow: 4px 4px 64px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.testi-card::before {
  content: "";
  background: url("../images/qoute.webp") no-repeat;

  width: 65px;
  height: 40px;
  position: absolute;
  background-size: contain;
  z-index: -1;
}
.testi-card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #555555;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}
.testi-card .client {
  gap: 10px;
  display: flex;
  align-items: center;
}
.testi-card .client .det .name {
  color: #34a585;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  font-family: var(--font-heading);
}
.testi-card .client .det .des {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #c9c9c9;
}
.testi-card .client .det {
  display: flex;
  flex-direction: column;
}
.overlap-slider {
  position: absolute;
  width: 180%;
}
.arrows {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.testimonials .slick-slide {
  margin: 20px 15px;
}

.testi {
  width: 25% !important;
}
/* Testimonials */

/* Testimonials 2 */
.testi-slider-2 .testi-slide {
  background: #f1edff;
  box-shadow: -3px 3px 0px #0b0b0b;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1.5rem;
}
.testi-slider-2 .testi-slide p {
  color: #302357;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.testi-slider-2 .testi-slide .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.testi-slider-2 .testi-slide .client {
  margin-top: 1rem;
}
.testi-slider-2 .testi-slide .client .det .name {
  font-weight: 500;
  font-size: 26px;
  line-height: 39px;
  color: #0b0b0b;
}
.testi-slider-2 .testi-slide .client .det .des {
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}
.testi-slider-2 .testi-slide .bottom .stars {
  background: #407bff;
  border-radius: 42px;
  padding: 10px 20px;
  color: #00f000;
  display: flex;
  font-size: 12px;
  gap: 8px;
}
/* Testimonials 2 */

.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
  margin: 0 10px;
}
.design-card-list-2 {
  direction: rtl;
}
.design-card-list-second-testimonal-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;
}
.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 50px;
  position: absolute;
  width: auto;
  height: 66px;
  bottom: 20px;
  z-index: 1;
  background: rgb(0 0 0 / 50%);
  border-radius: 25px;
  opacity: 0;
  transition: 0.5s ease;
}
.design-card-list li:hover .indusrtry-name,
.design-card-list-2 li:hover .indusrtry-name {
  opacity: 1;
}
.indusrtry-name p {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}
.rated {
  margin-bottom: 1rem;
}
.color-dark {
  color: #212121 !important;
}
.color-2 {
  color: #2d2d2d !important;
}
.mt-responsive {
  margin-top: 20px;
}
.rated p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  padding: 1rem 0;
}

/* Portfolio */
ul.overview-nav.d2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  border-radius: 40px;
  border: 1px solid rgba(27, 57, 129, 0.3);
  width: 53%;
  margin: auto;
  padding: 8px 10px;
  margin-bottom: 3rem;
}
ul.overview-nav.d2 a {
  padding: 15px 18px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.76);
}
ul.overview-nav.d2 li.active a {
  background: #69bdff;
  color: white;
  border-color: #69bdff !important;
  border-radius: 70px;
}
.port-card {
  margin-bottom: 1.5rem;
}
.port-card img {
  width: 100%;
}
/* Portfolio */

/* -------------------------counter CSS------------------------  */
ul#counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.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: 64px;
  color: #ffffff;
  margin-bottom: 0rem;
  flex-shrink: 0;
}
ul#counter li {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 0rem;
  text-align: center;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul#counter li .counter span.text {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  width: 90%;
  line-height: 20px;
  margin-top: 20px;
}
/* -------------------------counter CSS------------------------  */

/* -------------------------contact us-------------------------- */
.input-field1 label {
  padding-left: 10px;
  color: #292929;
  font-weight: 500;
  padding-bottom: 8px;
}
.input-field1 input,
.input-field1 textarea {
  cursor: pointer;
  height: 58px;
  width: 100%;
  font-size: 16px;
  color: #222222;
  padding: 15px 14px;
  outline: none !important;
  text-transform: capitalize;
  margin-bottom: 30px;
  /* box-shadow: 0 16px 24px 0 rgba(189, 196, 205, 0.13); */
  border-radius: 20px;
  border: solid 1px #00000021;
  background-color: #fff;
}
.input-field1 textarea {
  height: 58px;
}
.send {
  text-align: left;
  padding-top: 35px;
}
.send input[type="submit"] {
  height: 70px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.4s ease;
  text-transform: capitalize;
  width: 100%;
  border: 0;
  padding: 12px 50px;
  border-radius: 50px;
  box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
  background-color: #0b5d51;
}
.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;
}
/* -------------------------contact us-------------------------- */

/* ---------------------------footer------------------------------- */
footer {
  background: #050505;
  padding: 62px 0 30px 0px;
  text-align: center;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: center;
}
.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: 33px;
  width: 90%;
  margin: auto;
  margin-bottom: 30px;
}
.footer-hdng h4 {
  font-size: 20px;
  color: #fff;
  margin: 30px 0px 20px 0px;
}
.f-menu li a {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
.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: #ffffff;
}
.f-menu li {
  line-height: 2;
}
.copyright-sec {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.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---------------------- */

/* 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 .roman {
  list-style: upper-roman;
}
.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 {
  margin: 1rem 0;
  color: #171717;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px; /* 125% */
}
.terms p {
  margin-bottom: 2rem;
  position: relative;
  z-index: 0;
  color: #171717;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
/* terms */

@media (max-width: 1440px) {
    
    .mmpopup {
    height: 52vw !important;
}
    
    .accordion-list li {
    padding: 30px 60px 30px 30px !important;
}

    .fld-input img {
    display: none !important;
}
    
    .expert-icons {
    margin-right: -30px !important;
}
    
    .pckg .btn-arrow {
    left: 33px !important;
}

.pckg .btn-chat {
    left: 80px !important;
}
    
  ul.accordion-list li h3:after {
    top: -5px !important;
    right: -4vw;
  }

  .extra-res {
    width: 55% !important;
  }

  .extrafa {
    width: 40% !important;
  }

  .extra-s-para {
    width: 53% !important;
  }

  .sec-1-text h3 {
    padding-left: 6rem !important;
  }

  .img-sec-3-cash img {
    height: 420px !important;
  }

  .count-2 {
    top: 32vw !important;
    height: 250px !important;
    width: 250px !important;
  }

  .count-1 {
    top: 40vw !important;
    left: 40vw !important;
    height: 220px !important;
    width: 220px !important;
  }

  .count-3 {
    right: 12.5vw !important;
    top: 32vw !important;
    height: 220px !important;
    width: 220px !important;
  }
}

@media (max-width: 1200px) {
    
    a.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

    
        .fld-input img {
    display: none !important;
}
    
    .mmpopup {
    /* background-size: cover !important; */
    height: 71vh !important;
    border-bottom-right-radius: 80px !important;
    border-bottom-left-radius: 80px !important;
}

.mmpopup .centercont h3 span {
    font-size: 22px !important;
}

.mmpopup .centercont p {
    font-size: 13px !important;
}

.centercont.static {
    width: 100% !important;
}

.fld-input img {
    top: 19.7vw !important;
    left: 4.5vw !important;
}

.img-2 img {
    top: 25.2vw !important;
}

.img-3 img {
    top: 30.8vw !important;
}

  .count-1 {
    top: 41vw !important;
    left: 44.4vw !important;
  }

  .count-3 {
    top: 37vw !important;
    right: 19.1vw !important;
  }

  .expert-icons {
    margin-right: -50px !important;
  }

  .counter {
    height: 180px !important;
    width: 180px !important;
  }

  .count-2 {
    top: 35vw !important;
    height: 200px !important;
    width: 200px !important;
  }

  ul#counter li .counter > div {
    font-size: 40px !important;
  }

  ul#counter li .counter span.text {
    font-size: 14px !important;
  }

  .full p.s-para {
    width: 48% !important;
  }

  .extra-s-para {
    font-size: 12px !important;
  }

  .star svg {
    width: 14px !important;
  }

  .pckg .btn-arrow {
    left: 3.7vw !important;
  }

  .card-transparent-sec-5 {
    padding: 10px 10px !important;
  }

  .sec-3-ul li {
    font-size: 14px !important;
  }

  .card-small-sec-3 p {
    font-size: 16px !important;
  }

  .card-small-sec-3 h3 {
    font-size: 36px !important;
  }

  p.banner-text {
    font-size: 15px !important;
    line-height: 20px !important;
  }

  h1.banner-heading {
    font-size: 44px !important;
    line-height: 45px !important;
  }

  .accordion-list li {
    padding: 18px 20px !important;
  }

  .sec-1-text h3 {
    padding-left: 3rem !important;
  }

  .btn-wrap .theme-btn {
    font-size: 14px !important;
    padding: 5px 5px 5px 20px !important;
  }

  .extrafa {
    width: 53% !important;
  }

  .sec-3-text h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }

  .sec-heading h2 {
    font-size: 30px !important;
  }

  .extra-res {
    font-size: 12px !important;
  }

  .style-c span.star svg {
    width: 14px !important;
  }

  .sec-heading p {
    font-size: 14px !important;
    width: 90% !important;
  }

  ul.overview-nav.d2 {
    width: 62% !important;
  }

  .pckg .btn-chat {
    left: 7.4vw !important;
  }

  ul.overview-nav.d2 a {
    font-size: 15px !important;
  }

  .pckg .bottom ul li {
    font-size: 15px !important;
  }

  .img-sec-3-laptop img {
    max-width: 270px !important;
    top: 11vw !important;
    right: 11vw !important;
  }

  .sec-3-text.cash-bg p {
    width: 90% !important;
    margin: auto !important;
  }

  .sec-5-card h4 {
    font-size: 15px !important;
  }

  .sec-5-card p {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  span.sub-heading {
    font-size: 15px !important;
  }

  .sub-div-transparent p {
    font-size: 13px !important;
  }

  .card-transparent-sec-5 p {
    font-size: 12px !important;
    line-height: 18px;
  }

  .sec-outline-card {
    padding: 10px !important;
    height: 60px !important;
  }

  .sec-outline-card p {
    font-size: 14px !important;
  }

  .accordion-list li h3 {
    font-size: 13px !important;
    padding: 0px 22px 0px 0px;
  }

  ul.accordion-list li h3:after {
    padding: 3px 5px !important;
  }

  .answer p {
    font-size: 12px !important;
    line-height: 18px !important;
  }

  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%;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
    justify-content: center;
  }
  img {
    max-width: 100%;
    height: auto;
    text-align: center;
  }
  .menu-Bar {
    display: block;
    top: 0px;
    display: none;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  /*.menuWrap {*/
  /*  position: fixed;*/
  /*  left: -210%;*/
    /* right: 0; */
  /*  top: 0;*/
  /*  bottom: 0;*/
  /*  margin: auto;*/
  /*  background: #ffffff;*/
  /*  height: 100vh;*/
  /*  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;
    border: none;
  }
  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: #ffffff;
    width: 100%;
    text-align: left;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    width: 50%;
    margin: auto;
  }
  header .main-header ul.menu > li > a:before {
    display: none;
  }
}

@media (max-width: 1025px) {
        a.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
  .btn-wrap .theme-btn {
    font-size: 16px;
  }
  .overlap-slider {
    /* width: 180%; */
    width: 100%;
    position: relative;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    
        a.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
    
    .mmpopup .centercont h4 {
    font-size: 25px !important;
}

   .count-3 {
        top: 37vw !important;
        right: 19.1vw !important;
    }
    
        .sec-outline-card p
 {
        font-size: 12px !important;
    }
    .sec-outline-card {
    gap: 5px !important;
    margin-right: 5px !important;
}
    
    .mmpopup {height: 55vw !important;}

.centercont.static h3 span {
    margin-top: 8vw !important;
}

.fld-input img {
    top: 24vw !important;
    left: 6vw !important;
}

.img-2 img {
    top: 30.4vw !important;
    left: 6vw !important;
}

.img-3 img {
    top: 37.1vw !important;
}

.fld-input input {
    font-size: 14px !important;
}
    
    .testi{
        width: 45% !important;
    }
    
  header .main-header ul.menu > li > a {
    width: 100% !important;
    margin: 20px auto !important;
    padding: 7px 7px 7px 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
  }

  .menu li a.theme-btn.bordered {
    gap: 77px !important;
  }

  .menu > li a {
    padding: 7px 7px 7px 110px !important;
    text-align: center !important;
    margin: 20px 160px !important;
  }

  h1.banner-heading {
    font-size: 36px !important;
    line-height: 40px !important;
    margin: 8px 0px !important;
  }

  .banner-content ul li {
    font-size: 14px !important;
  }

  .btn-wrap .theme-btn {
    font-size: 13px !important;
    padding: 3px 5px 3px 20px !important;
  }

  p.s-para {
    font-size: 13px !important;
    font-weight: 500 !important;
    text-shadow: 0px 0px 0.6px black !important;
  }

  .sec-1-text h3 {
    font-size: 18px !important;
  }

  .sec-3-text h2 {
    font-size: 25px !important;
    line-height: 28px !important;
    margin: 6px 0px !important;
  }

  .sec-heading p {
    font-size: 12px !important;
    line-height: 18px !important;
  }

  .sec-heading.center {
    margin-bottom: 1rem !important;
  }

  .full p.s-para {
    width: 55% !important;
  }

  .sec-3-ul li {
    font-size: 12px !important;
  }

  .sec-3-ul {
    margin-bottom: 1rem !important;
  }

  .card-small-sec-3 h3 {
    font-size: 20px !important;
  }

  .card-small-sec-3 {
    padding: 5px 10px !important;
  }

  ul.overview-nav.d2 {
    width: 74% !important;
  }

  .pckg .upper .price .amount {
    font-size: 35px !important;
  }

  .pckg .upper .price .uspto {
    font-size: 10px !important;
    padding: 3px 5px !important;
  }

  span.uspto.logo-cut-price span {
    padding: 3px 5px !important;
  }

  .div {
    margin-right: 10px !important;
  }

  .pckg .btn-arrow {
    left: 1.7vw !important;
    padding: 0px 0px !important;
  }

  .pckg .btn-chat {
    left: 6.2vw !important;
  }

  .pckg .bottom ul li:not(.last) {
    margin-bottom: 0.4rem !important;
  }

  .img-sec-3-cash img {
    height: 340px !important;
  }

  section {
    padding: 2rem 0px !important;
  }

  .back-design-trans-bg {
    width: 95% !important;
  }

  .extrafa {
    width: 70% !important;
  }

  button.btn-submit {
    margin-bottom: 20px !important;
    line-height: 0 !important;
    padding: 4px 10px 4px 30px !important;
    font-size: 15px !important;
    height: 50px !important;
  }

  button.btn-submit span {
    width: 40px !important;
    right: -14vw !important;
  }

  .contact-img {
    margin: 140px 0px -2px 0px !important;
  }

  .footer-sec p {
    font-size: 13px !important;
  }

  .copyright {
    font-size: 12px !important;
  }

  .counter {
    height: 190px !important;
    width: 190px !important;
  }

  .count-2 {
    top: 37vw !important;
    height: 220px !important;
    width: 220px !important;
  }

  .count-1 {
    top: 49vw !important;
    left: 43vw !important;
  }

  .count-3 {
    top: 40vw !important;
    right: 7vw !important;
  }

  .expert-text h3 {
    font-size: 22px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    
        a.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
    
  ul#counter li .counter > div {
    font-size: 50px !important;
}
    
    .banner-content ul li {
    padding: 4px 0px 5px 30px !important;
    font-size: 13px !important;
}

.banner-content ul li:before {
    top: 6px !important;
}

p.banner-text {
    font-size: 14px !important;
    line-height: 20px !important;
}

.mainBanner {
    background-position: 40% !important;
}
    
    .card-small-sec-3 img {
    height: 100% !important;
}

.back-design-cash-bg {
    width: 95% !important;
}

ul.accordion-list li h3:after {
    top: 0px !important;
    right: -1vw !important;
}
    
    .sec-1-text h3 {
    text-align: center !important;
}
    
    .fld-input img {
    top: 30.2vw !important;
    left: 7vw !important;
}

.img-2 img {
    top: 38.9vw !important;
}

.img-3 img {
    top: 47.5vw !important;
}
    
    .card-transparent-sec-5 {
    height: 200px !important;
}

ul#counter li .counter span.text {
    font-size: 11px !important;
}

  .sec-3-img {
    display: none !important;
  }

  header .main-header ul.menu > li > a {
    width: 100% !important;
    margin: 20px auto !important;
    padding: 7px 7px 7px 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
  }

  .menu li a.theme-btn {
  width: 100% !important;
  }

  .extra-padding-div {
    height: 640px !important;
  }

  .count-2 {
    top: 52vw !important;
  }

  .count-3 {
    top: 54vw !important;
    right: 18vw !important;
  }

  .count-1 {
    left: 21vw !important;
    top: 58vw !important;
  }

  .sec-3-text.cash-bg {
    padding: 20px 40px 20px 40px !important;
    text-align: center;
  }

  section {
    padding: 2rem 0px !important;
  }

  .back-design-trans-bg {
    width: 95% !important;
  }

  .extra-s-para {
    width: 73% !important;
  }

  .sec-outline-bg {
    width: 95% !important;
  }

  .contact-img {
    display: none !important;
  }

  section.contact-sec {
    margin-bottom: 50px !important;
  }

  .expert-icons {
    display: none !important;
  }

  button.btn-submit {
    padding: 6px 10px 6px 30px !important;
    font-size: 17px !important;
    height: 52px !important;
  }

  button.btn-submit span {
    width: 42px !important;
    right: -33vw !important;
  }

  .extra-s-para {
    width: 72% !important;
  }

  .card-small-sec-3 {
    width: 100%;
    margin: auto;
    padding: 15px 20px;
    margin-bottom: 20px;
  }

  .full p.s-para {
    width: 100% !important;
    margin: auto;
  }

  ul.overview-nav.d2 {
    width: 100% !important;
  }

  .pckg .upper .price .amount {
    font-size: 35px !important;
  }

  span.uspto.logo-cut-price span {
    font-size: 10px !important;
    padding: 1px 3px;
  }

  .pckg .upper .price .uspto {
    font-size: 10px !important;
    padding: 3px 3px !important;
  }

  .pckg .btn-chat {
    left: 10vw !important;
  }

  .img-sec-3-cash img {
    display: none !important;
  }

  .img-sec-3-laptop img {
    display: none !important;
  }

  .footer-sec p {
    font-size: 13px;
  }

  .copyright p {
    font-size: 14px !important;
  }
}

@media only screen and (min-width: 568px) and (max-width: 767px) {
    
        a.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
    
        .mmpopup {
        min-height: 80vh !important;
        background-size: contain !important;
    }
    
        .fld-input img {
        top: 38.7vw !important;
        left: 10.5vw !important;
    }
    
    .img-2 img
 {
    top: 50.6vw !important;
}

.img-3 img
 {
    top: 62.4vw !important;
}
    
  a.theme-btn {
    margin: auto;
  }
  
      ul#counter li .counter span.text {
        font-size: 11px !important;
    }

  .sec-1-text h3 {
    text-align: center !important;
  }

  .extra-padding-div {
    height: 640px !important;
  }

  .extra-s-para {
    width: 85% !important;
  }

  span.btn-arrow {
    width: 42px;
  }

  a.theme-btn.bordered.sec-3-btn span {
    left: 4.5vw;
  }

  .full p.s-para {
    width: 100% !important;
  }

  section {
    padding: 1rem 0px;
  }

  ul.overview-nav.d2 {
    width: 100% !important;
  }

  .pckg .btn-arrow {
    left: 20vw !important;
  }

  .pckg .btn-chat {
    left: 28vw !important;
  }

  .back-design-cash-bg {
    width: 100% !important;
    padding: 40px 0px 40px 50px !important;
  }

  .back-design-trans-bg {
    width: 100% !important;
  }

  .sec-outline-bg {
    width: 100% !important;
  }

  .banner-content p.s-para {
    display: none;
  }

  a.theme-btn.bordered {
    background: #fff !important;
  }

  .sec-3-text .btn-wrap {
    display: none;
  }

  .sec-client-img {
    display: none;
  }

  .sec-cliend-text {
    text-align: center;
  }

  .back-design-trans-bg .btn-wrap {
    display: none;
  }
  .sec-3-img {
    display: none !important;
  }

  .count-2 {
    top: 67vw !important;
  }

  .count-3 {
    top: 71vw !important;
    right: 9vw !important;
  }

  .count-1 {
    left: 13vw !important;
    top: 80vw !important;
  }

  header .main-header ul.menu > li > a {
    width: 70% !important;
    margin: 20px auto !important;
    padding: 7px 7px 7px 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
  }

  .menu li a.theme-btn.bordered {
    gap: 77px !important;
  }

  .img-sec-3-cash img {
    display: none !important;
  }

  .img-sec-3-laptop img {
    display: none !important;
  }

  .expert-icons {
    display: none !important;
  }

  .footer-sec p {
    font-size: 13px !important;
  }

  .copyright p {
    font-size: 14px !important;
  }

  .contact-img {
    display: none !important;
  }

  button.btn-submit {
    padding: 6px 10px 6px 30px !important;
    font-size: 17px !important;
    height: 52px !important;
    width: 90% !important;
    margin: auto !important;
    margin-bottom: 30px !important;
    margin-top: 20px !important;
  }

  button.btn-submit span {
    width: 38px !important;
    right: -27vw !important;
  }
}

@media only screen and (min-width: 414px) and (max-width: 567px) {
    
    ul.accordion-list li h3:after {
    right: 0px !important;
}

  .sec-heading {
    margin-bottom: 1rem !important;
}

.main-sec-outline-card {flex-direction: column !important;}

.sec-outline-card {
    width: 100% !important;
}

    
        a.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
    
.mmpopup .fld-input {height: 35px !important;}

.fld-input input {
    font-size: 12px !important;
}

.fld-btn button {
    padding: 0px 0px !important;
    height: 35px !important;
    font-size: 12px !important;
}

     .mmpopup {
        min-height: 66vh !important;
        padding: 10px 30px !important;
        width: 100%;
        margin: auto;
        background-size: contain!important;
    }
    
        .fld-input img {
        top: 56vw !important;
        left: 10.5vw !important;
    }
    
    .img-2 img
 {
    top: 68.5vw !important;
}

.img-3 img
 {
    top: 81.2vw !important;
}
    
  .sec-3-img {
    display: none !important;
  }

  .pckg .btn-wrap {
    width: 100% !important;
  }

  ul#counter li .counter > div {
    font-size: 30px !important;
  }

  ul#counter li .counter span.text {
    font-size: 10px !important;
    width: 80% !important;
    line-height: 1 !important;
  }

  .expert-text h3 {
    font-size: 20px !important;
  }

  .mainBanner {
    background-position: -180px 0px;
    height: 100vh !important;
  }

  .mainBanner p.s-para {
    display: none;
  }

  .sec-3-text .btn-wrap {
    display: none;
  }

  a.theme-btn {
    margin: auto;
  }

  .expert-icons {
    display: none !important;
  }

  .extra-s-para {
    width: 99% !important;
  }

  span.btn-arrow {
    width: 42px;
  }

  a.theme-btn.bordered.sec-3-btn span {
    left: 4.5vw;
  }

  .full p.s-para {
    width: 100% !important;
  }

  section {
    padding: 1rem 0px !important;
  }

  ul.overview-nav.d2 {
    width: 100% !important;
  }

  .back-design-trans-bg {
    width: 100% !important;
  }

  .sec-outline-bg {
    width: 100%;
  }

  .banner-content p.s-para {
    display: none;
  }

  a.theme-btn.bordered {
    background: #fff !important;
  }

  .sec-3-text .btn-wrap {
    display: none;
  }

  .sec-client-img {
    display: none;
  }

  .sec-cliend-text {
    text-align: center;
  }

  .back-design-trans-bg .btn-wrap {
    display: none;
  }

  .menu li a.theme-btn.bordered {
    gap: 77px !important;
  }

  button.btn-submit {
    padding: 6px 10px 6px 30px !important;
    font-size: 17px !important;
    height: 52px !important;
  }

  .img-sec-3-cash img {
    display: none !important;
  }

  .img-sec-3-laptop img {
    display: none !important;
  }

  .expert-icons {
    display: none !important;
  }

  .footer-sec p {
    font-size: 13px;
  }

  .copyright p {
    font-size: 14px !important;
  }

  .contact-img {
    display: none !important;
  }

  a.theme-btn {
    margin: auto;
  }

  .sec-1-text h3 {
    text-align: center !important;
  }

  .extra-padding-div {
    height: 680px !important;
  }

  .extra-s-para {
    display: none !important;
  }

  a.theme-btn.bordered.sec-3-btn span {
    left: 4.5vw;
  }

  .full p.s-para {
    width: 100% !important;
  }

  section {
    padding: 1rem 0px;
  }

  ul.overview-nav.d2 {
    width: 100% !important;
  }

  .pckg .btn-arrow {
    left: 15vw !important;
  }

  .pckg .btn-chat {
    left: 25vw !important;
  }

  .back-design-cash-bg {
    width: 100% !important;
    padding: 40px 0px 40px 30px !important;
  }

  .back-design-trans-bg {
    width: 100% !important;
    padding: 50px 20px !important;
  }

  .sec-outline-bg {
    width: 100% !important;
    padding: 30px 20px !important;
  }

  .banner-content p.s-para {
    display: none;
  }

  a.theme-btn.bordered {
    background: #fff !important;
  }

  .sec-3-text .btn-wrap {
    display: none;
  }

  .sec-client-img {
    display: none;
  }

  .sec-cliend-text {
    text-align: center;
  }

  .back-design-trans-bg .btn-wrap {
    display: none;
  }
  .sec-3-img {
    display: none !important;
  }

  .count-2 {
    top: 100vw !important;
    height: 150px !important;
    width: 150px !important;
  }

  .count-3 {
    top: 114vw !important;
    right: 6vw !important;
    height: 130px !important;
    width: 130px !important;
  }

  .count-1 {
    left: 6vw !important;
    top: 116vw !important;
    height: 130px !important;
    width: 130px !important;
  }

  header .main-header ul.menu > li > a {
    width: 100% !important;
    margin: 10px auto !important;
    padding: 7px 7px 7px 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
  }

  .menu li a.theme-btn.bordered {
    gap: 30px !important;
  }

  .img-sec-3-cash img {
    display: none !important;
  }

  .img-sec-3-laptop img {
    display: none !important;
  }

  .expert-icons {
    display: none !important;
  }

  .footer-sec p {
    font-size: 13px !important;
  }

  .copyright p {
    font-size: 14px !important;
  }

  .contact-img {
    display: none !important;
  }

  button.btn-submit {
    padding: 6px 10px 6px 30px !important;
    font-size: 17px !important;
    height: 52px !important;
    width: 90% !important;
    margin: auto !important;
    margin-bottom: 30px !important;
    margin-top: 20px !important;
  }

  button.btn-submit span {
    width: 38px !important;
    right: -20vw !important;
  }
}

@media only screen and (min-width: 375px) and (max-width: 736px) {
    
    ul.accordion-list li h3:after {
    right: 0px !important;
}
  .pkg-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    padding: 1rem 0;
  }
  .banner-content {
    padding: 150px 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: 16px;
    line-height: 25px;
  }
  .btn-wrap {
    flex-direction: column;
    width: 90% !important;
    margin: auto;
  }
  .btn-wrap a {
    width: 100%;
    text-align: center;
  }
  .banner-img {
    display: none;
  }
  .sec-heading h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .sec-heading p {
    font-size: 16px;
    line-height: 26px;
    width: 90%;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
}

.sub-heading:before {
  background: #0E5191;
  z-index: 0;
  position: absolute;
  top: 10px;
  left: 0;
  height: 3px;
  width: 20px;
  content: "";
}

.banner-content ul li {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 0.5rem;
  line-height: 24px;
  margin-bottom: 0.5rem;
  color: #171717;
  position: relative;
  z-index: 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
  padding-left: 30px;
  padding: 10px 10px 15px 30px;
}

.banner-content ul {
  margin-bottom: 2rem;
}

.banner-content ul li:before {
  position: absolute;
  z-index: 0;
  top: 13px;
  left: 3px;
  height: 100%;
  width: 100%;
  background-image: url(../images/tick.webp);
  background-repeat: no-repeat;
  content: "";
}

p.s-para {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  color: #171717;
  flex-wrap: wrap;
}

span.btn-arrow svg {
  height: 45px;
  width: 100%;
}

span.btn-chat svg {
  height: 45px;
  width: 100%;
}

.menu > li a {
  padding: 5px 7px 5px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  border: 2px solid var(--primary);
  transition: 0.5s ease;
  border-radius: 200px;
  border: 1px solid rgba(14, 81, 145, 0.3);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
}

.menu li a.theme-btn.bordered {
  color: var(--primary);
  padding: 5px 7px 5px 20px;
  font-size: 16px;
  border-radius: 200px;
  border: 1px solid rgba(14, 81, 145, 0.3);
  background: rgba(14, 81, 145, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-1-text h3 {
  padding-left: 12rem;
  color: #171717;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

section.sec-1 {
  padding: 0px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
}

.port-slide {
  align-items: center;
  border-right: 1px solid rgba(217, 217, 217, 0.4);
  padding: 20px 20px;
}

.design-card-list-second-2 {
  direction: rtl;
}

p.s-para.extra-s-para {
  justify-content: center;
  border-radius: 110px;
  border: 1px solid #69bdff;
  background: rgba(105, 189, 255, 0.15);
  width: 36%;
  padding: 8px 0px;
  margin: auto;
  margin-top: 2rem;
}

.back-design-bg {
  padding: 50px 35px;
  border-radius: 40px;
  background: linear-gradient(
    290deg,
    #69bdff 0.95%,
    #69bdff 25.48%,
    #69bdff 42.93%,
    #075089 89.05%,
    #004881 99.05%
  );
}

.back-design-cash-bg {
  padding: 0px 0px;
  overflow: hidden;
  width: 80%;
  margin: auto;
  border-radius: 60px;
  background: linear-gradient(
      279deg,
      #075089 0.51%,
      #69bdff 30.95%,
      #69bdff 52.61%,
      #075089 109.87%,
      #004881 122.28%
    ),
    var(--222, #69bdff);
}

.back-design-trans-bg {
  padding: 0px 0px;
  overflow: hidden;
  width: 80%;
  margin: auto;
  border-radius: 40px;
  background: linear-gradient(
      290deg,
      #004881 0.95%,
      #53b3ff 25.48%,
      #53b3ff 42.93%,
      #075089 89.05%,
      #004881 99.05%
    ),
    linear-gradient(
      290deg,
      #69bdff 0.95%,
      #69bdff 25.48%,
      #69bdff 42.93%,
      #075089 89.05%,
      #004881 99.05%
    );
}

.sec-3-ul li {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 0.5rem;
  line-height: 24px;
  margin-bottom: 0.5rem;
  color: #fff;
  position: relative;
  z-index: 0;
  padding-left: 30px;
}

.sec-3-ul {
  margin-bottom: 2rem;
}

.sec-3-ul li:before {
  position: absolute;
  z-index: 0;
  top: 2px;
  left: 3px;
  height: 100%;
  width: 100%;
  background-image: url(../images/white-tick.webp);
  background-repeat: no-repeat;
  content: "";
}

.sec-3-ul li:not(:last-child) {
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
}

.c-white-span:before {
  background: #fff;
}

.card-small-sec-3 {
  border-radius: 29.345px;
  border: 0.947px solid rgba(217, 217, 217, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0px);
  padding: 15px 15px;
  text-align: center;
  margin-bottom: 20px;
}

.card-small-sec-3 h3 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-small-sec-3 p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.card-small-sec-3 img {
  height: 50px;
  margin-bottom: 5px;
}

.sec-3-btn {
  color: #fff !important;
  border-radius: 200px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.style-c {
  gap: 5px !important;
  width: 36% !important;
  font-size: 14px !important;
  margin: 0 !important;
}

.style-c span.star svg {
  width: 18px;
}

.sec-3-text h2 {
  font-size: 40px;
  line-height: 45px;
}

.sec-3-img {
  text-align: center;
  margin-top: 1.5vw;
}

.pckg {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  transition: 0.3s;
  box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
  height: 100%;
  padding: 15px 15px;
  border-radius: 25px;
  border: 1px solid #d9d9d9;
}
.pckg .upper .title {
  font-size: 28px;
  line-height: 34px;
  padding-bottom: 1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
  border-bottom: 1px solid #98d1fd;
}
.pckg .upper .starting-in {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}
.pckg .upper p {
  font-size: 17px;
  line-height: 26px;
  color: #6e6e6e;
  margin-bottom: 1.5rem;
}
.pckg .upper .price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  justify-content: space-between;
}
.pckg .upper .price .amount {
  font-weight: 600;
  font-size: 51px;
  line-height: 40px;
  font-family: 'Satoshi';
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
}
.pckg .upper .price .uspto {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border-radius: 35.636px;
  background: var(--primary);
  padding: 5px 5px;
  display: flex;
  align-items: anchor-center;
  gap: 6px;
}
.pckg .upper {
  padding: 20px 20px 20px 20px;
  border-radius: 21px;
  background: #69bdff;
}
.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;
  padding-left: 35px;
  line-height: 30px;
  color: #5b5b5b;
  position: relative;
}
.pckg .bottom ul {
  margin: 1rem 0 3rem;
  overflow-y: auto !important;
  padding-right: 10px;
  height: 255px;
  overflow-y: scroll;
}
.bottom span {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
}
.pckg .bottom ul li:not(.last) {
  margin-bottom: 1rem;
}
.pckg .bottom ul li::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 10px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-image: url(../images/tick.webp);
}
.pckg .btn-wrap {
  flex-direction: column;
  margin: 0;
}
.pckg:hover {
  border: 1px solid #0e5191;
}
.pckg.popular {
  background: #283068;
  transform: scale(1.03);
}
.pckg.popular .title {
  color: #fff;
}
.pckg.popular p {
  color: #fff;
}
.pckg.popular .uspto {
  color: #fff !important;
}
.pckg.popular .bottom span {
  color: #fff;
}
.pckg.popular .bottom ul li {
  color: #fff;
}
.pckg.popular .btn-wrap .theme-btn {
  background: #fbbf24 !important;
  color: #000 !important;
  padding: 16px 24px;
}
.pckg .btn-wrap .theme-btn {
  padding: 5px 5px 5px 30px;
  width: 100%;
  justify-content: center;
}
.pckg.popular .amount {
  color: #fbbf24 !important;
}
.pckg.popular .bottom ul li::before {
  color: #fbbf24;
}

span.uspto.logo-cut-price span {
  border-radius: 35.636px;
  background: #fff;
  padding: 5px 8px;
}
.div {
  margin-right: 20px;
}

.pckg .btn-arrow {
  position: relative;
  left: 60px;
}

.img-sec-3-cash img {
  width: 100%;
  margin-bottom: -4px !important;
}

.img-sec-3-laptop img {
  /* width: 18vw; */
  /* position: absolute; */
  /* right: 13vw; */
  /* top: 8vw; */
  /* max-width: 350px; */
}

.sec-5-card img {
  width: 100%;
}

.sec-5-card h4 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.36px;
  margin: 10px 0px;
}

.sec-5-card p {
  color: #000000b3;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.sec-5-card {
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 20px 20px;
  margin-bottom: 30px;
  height: 100%;
}

.card-transparent-sec-5 p {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.card-transparent-sec-5 {
  border-radius: 20px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: rgba(14, 81, 145, 0.15);
  padding: 20px 20px;
  margin-bottom: 20px;
  height: 100%;
}

.sub-div-transparent {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--MMMM, #0e5191);
  padding: 8px 10px;
  margin-bottom: 15px;
}

.sub-div-transparent p {
  color: #fff;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.36px;
  font-weight: 500;
}

.sec-5-card h3 {
  color: #69bdff;
  text-align: right;
  font-size: 90px;
  font-weight: 600;
}

.sub-icons-expert {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: 80%;
  margin: auto;
  margin-bottom: 30px;
}

.sub-icons-expert img {
  margin-bottom: 20px;
}

.expert-text h3 {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}

.expert-icons {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.counter {
  border-radius: 289px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #67bcff 4.14%, #008fff 100%), #67bcff;
  width: 289px;
  height: 289px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.count-2 {
  border-radius: 326px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #3b9fff 4.14%, #0e5191 100%);
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.11);
  width: 326px;
  height: 326px;
  position: absolute;
  z-index: 1;
}

.count-1 {
  position: absolute;
  left: 42vw;
  bottom: 7vw;
}

.count-3 {
  position: absolute;
  right: 18vw;
  z-index: 0;
  width: 259px;
  height: 259px;
}

.sec-cliend-text .sec-heading {
  text-align: start;
}

.sec-cliend-text .sec-heading h2 {
  text-align: start !important;
  width: 90%;
}

.sec-cliend-text .sec-heading p {
  text-align: start !important;
  margin: 0;
  margin-top: 10px;
  width: 100%;
}

.sec-client-img {
  text-align: end;
}

.sec-outline-bg {
  border-radius: 40px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 80px 50px;
  width: 80%;
  margin: auto;
}

.sec-outline-card {
  border-radius: 13.553px;
  border: 0.904px solid rgba(217, 217, 217, 0.2);
  background: var(--222, #69bdff);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px 15px;
  margin-bottom: 10px;
}

.sec-outline-card p {
  color: #fff;
  font-size: 18.071px;
  line-height: normal;
}

.contact-img {
  margin: 60px 0px -2px 0px;
}

.sec-contact-form h2 {
  text-align: start;
}

.sec-contact-form p {
  text-align: start;
  margin: 0;
  width: 100%;
  margin-top: 10px;
}

.contact-feild label {
  color: #171717;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  margin-top: 20px;
}

.contact-feild input {
  width: 100%;
  height: 40px;
}

.contact-feild textarea {
  width: 100%;
  height: 155px !important;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background: rgba(23, 23, 23, 0);
  backdrop-filter: blur(4.5px);
}

button.btn-submit {
  padding: 8px 10px 8px 25px;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  border: 2px solid var(--primary);
  transition: 0.5s ease;
  border-radius: 200px;
  border: 1px solid rgba(14, 81, 145, 0.3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-top: 25px;
  justify-content: center;
  position: relative;
}

button.btn-submit span {
  position: relative;
  right: -10.1vw;
}

button.btn-submit span svg {
  height: 50px;
  width: 100%;
}

.contact-img {
  text-align: end;
}

section.contact-sec.pb-0 {
  overflow: hidden;
}

.footer-sec {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

ul.f-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

ul.f-menu li.first {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 20px;
}



.pro-text p {
  color: #000 !important;
  font-size: 12px !important;
  font-style: normal !important;
  line-height: normal;
  padding-bottom: 0 !important;
  margin-bottom: 0px !important;
  border-bottom: none !important;
}
.pro-text h6 {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}
.pro-main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.reviews-cards-main {
  margin-bottom: 20px;
  padding: 25px 25px;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
}
.reviews-cards-main p {
  color: #000000b3;%);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: start;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}

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

.design-card-list-second-testimonal-2 .pro-main {
  justify-content: flex-end;
}

.design-card-list-second-testimonal-2 .reviews-cards-main p {
  text-align: end;
}

.design-card-list-second-testimonal-2 .pro-text h6 {
  text-align: end;
}

.design-card-list-second-testimonal-2 .star-testimonal {
  flex-direction: row-reverse;
}

section.thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.thankyou .btn-wrap {
  justify-content: center;
}


.terms-ul li {
  position: relative;
  z-index: 0;
  color: #171717;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.terms-ul li:before {
  position: absolute;
  z-index: 0;
  top: 3px;
  left: -32px;
  height: 100%;
  width: 100%;
  background-image: url(../images/tick.webp);
  background-repeat: no-repeat;
  content: "";
}

/* 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%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 590px;
  z-index: 9999999;
  overflow: hidden;
  display: none;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100vh;
  overflow-y: auto;
}
.mmpopup {
  text-align: center;
  background: #2c2c2c;
  padding: 0px 40px 15px;
  background: url(../images/Group.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  min-height: 82vh;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
.mmpopup .formpop {
  width: 100%;
  margin: 16px auto;
}
.mmpopup .fld-input {
  height: 55px;
  width: 100%;
  border-radius: 40px;
  margin-bottom: 1rem;
  border: 2px solid #000000;
  overflow: hidden;
}
.mmpopup .centercont h4 {
  font-size: 20px;
  color: #566060;
  margin-bottom: 15px;
}
.mmpopup .centercont h4 span span {
  display: none;
}
.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: #ffffff;
  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 {
  font-size: 16px;
  color: #000;
  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: #14528f;
  font-weight: 700;
}
.mmpopup .centercont h3 {
  font-size: 50px;
  font-weight: 400;
  color: #0085ff;
}
.mmpopup .centercont h3 span {
  display: block;
  margin: 0 30px;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #000;
}
.mmpopup .centercont h4 span {
  font-weight: 700;
  color: #000000;
  font-size: 50px;
}
.fld-input input {
  width: 100%;
  height: 100%;
  padding: 0 20px 0px 40px;
  font-size: 18px;
  letter-spacing: 0.2px;
  background: transparent;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
}
.fld-input input::placeholder {
  color: #737373;
  font-weight: 400;
}
.fld-btn button {
  border-radius: 50px;
  background-color: #14528f;
  width: 100%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: 0.5s;
  height: 60px;
  cursor: pointer;
  border: 0;
}
.fld-btn button i {
  padding-left: 12px;
}
.fld-btn button:hover {
  transform: scale(1.03);
}


.fld-input img {
    height: 15px;
    position: absolute;
    left: 2.8vw;
    top: 14.3vw;
}
.img-2 img{
    top: 17.7vw;
}
.img-3 img{
    top: 21vw;
}

.centercont.dynamic {
    width: 100%;
}
/* popup */

.pckg .bottom h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 0px 0px 10px 12px;
}

    .sec-outline-card {
        gap: 10px;
        margin-right: 10px;
    }
    
    .sec-outline-card img {
    height: 30px;
}

.centercont.static {
    width: 100%;
}

.main-line {
    background: rgba(217, 217, 217, 0.40);
    height: 1px;
    width: 30%;
    margin: auto;
}

.sec-3-img img {
    width: 100%;
}

.main-sec-outline-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.img-sec-3-laptop img {
 width: 18vw;
position: absolute;
right: 13vw;
top: 50%;
max-width: 350px;
transform: translateY(-50%);
}

.leadforms-step-wrapper {
    position: relative;
    padding-bottom: 0px !important;
}

.leadforms-submit-button, button.leadforms-submit-button, input[type=submit].leadforms-submit-button, button[type=submit].leadforms-submit-button {
    margin: 12px 0px 0px 0px !important;
}

.leadforms-form-body-wrapper .leadforms-form-body .leadforms-additional-elements{
        margin: 0px auto !important;
    
}

.leadforms-submit-button, button.leadforms-submit-button, input[type=submit].leadforms-submit-button, button[type=submit].leadforms-submit-button {
    font-size: 16px !important;
    padding: 10px 0px !important;
}
