/*Main Css */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary: #fff472;
  --secondary: #cfff76;
  --bg-light: #ffdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;
  --font-heading: "Anton", sans-serif;
  --font-accent: "Anton", sans-serif;
  --font-body: "Anton", sans-serif;
  --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
  background: #000;
  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: #000;
}

/* Tabbing CSS */
[class^="box-"] {
  display: none;
}
[class^="box-"].showfirst {
  display: block;
}
html {
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  display: block;
  font-weight: 400;
}
*: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 */
.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;
}

/* 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 {
  -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: relative;
  background: transparent;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
}
header.sticky {
  background: white;
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
    0px 2px 4px -1px rgb(0 0 0 / 6%);
  top: 0;
}
.main-header {
  padding: 21px 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: 0px 0 0px 35px;
}
.menu > li > a {
  display: block;
  font-size: 24px;
  color: var(--black);
  font-weight: 400;
}
.header-btn {
  background: var(--primary);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400 !important;
  color: #2b2e4b !important;
  font-size: 24px !important;
  font-style: normal;
  line-height: 24px;
  border-radius: 35px;
  border: 2px solid #000;
  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: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-content {
  padding: 58px 0 0px;
}
h1.banner-heading {
  margin-bottom: 0rem;
  font-size: 200px;
  line-height: 200px;
}
span.sub-heading {
  color: #4efff0;
  font-size: 54px;
  line-height: 48.4px;
  letter-spacing: 5.4px;
  padding: 14px 0;
}
p.banner-text {
  font-size: 30px;
  line-height: 48.4px;
}
.banner-list li {
  color: #fff;
  font-size: 20px;
}
ul.banner-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 12px;
}
h1.banner-heading span {
  color: var(--secondary);
}
.ban-img {
  margin-right: 0;
  text-align: center;
}
.text-wrap {
  margin-bottom: 32px;
  margin-right: -30px;
  transform: skew(360deg, 343deg);
}
.rating-text p {
  font-size: 16.358px;
  color: #fff;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
}
.rating-text {
  margin-right: -96px;
  padding: 22px 0;
}
.rating-text p span {
  display: flex;
  align-items: center;
}
.banner-img {
  border-radius: 30px;
  background: #fff;
  padding: 20px;
  width: 530px;
  filter: blur(5px);
  margin-bottom: 34px;
}
.banner-img p {
  color: #1e1e1e;
  font-family: Roboto;
  font-size: 19px;
  line-height: 30px;
  margin-top: 28px;
}
.slider-wrap {
  margin: 222px 0 0 42px;
}
.slider-wrapper {
  position: relative;
  margin-right: -294px;
}
.banner-slider .slick-list.draggable {
  padding-right: 30%;
}
.banner-slider .slick-slide.slick-current.slick-active .banner-img {
  filter: blur(0px);
}
.detail-wrap {
  position: relative;
}
.details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -65px;
  padding: 0 24px;
}
.client-info h4 {
  font-size: 18px;
  color: #fff;
  font-family: "Roboto";
  line-height: 24px;
}
.client-info span {
  font-size: 14px;
  color: #fff;
  font-family: "Roboto";
}
.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-1 .sec-heading {
  margin-top: -176px;
}
section.sec-1 {
  margin-top: 130px;
}
.sec-2 .sec-heading h2 {
  color: #fff472;
  font-size: 96px;
  line-height: 110px;
}
section.sec-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 173px 0 345px;
}
.sec-3 .sec-heading p {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  line-height: 36px;
}
.btn-wrap .call-btn {
  color: #000;
  font-size: 30px;
  line-height: 24px;
}
.sec-3 .btn-wrap {
  gap: 2rem;
  margin-top: 64px;
}
section.sec-4:before {
  content: "";
  background-image: url(../images/side-image.webp);
    max-width: 1268px;
    max-height: 1293px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
}
.sec4-text-wrap span {
  color: #fff;
  font-size: 30px;
  line-height: 56px;
}
.sec4-text-wrap h2 {
  color: #cfff76;
  font-size: 90px;
  line-height: 90px;
}
.sec4-text-wrap {
  transform: skew(360deg, 343deg);
  margin-bottom: 120px;
}
.sec4-image {
  max-width: 49%;
    max-height: 1090px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: -1;
    background: url(../images/sec4-image.webp);
    background-size: cover;
    background-position: center;
     padding: 3.5rem; 
    display: flex;
    align-items: flex-end;
}
.sec-4 .btn-wrap {
  margin-top: 60px;
}
.sec-5-headingh2 {
  font-size: 90px;
  line-height: 158px;
  letter-spacing: -0.9px;
}
.sec-5-heading p {
  color: #333;
  font-family: Roboto;
  font-size: 20px;
  line-height: 30px;
}
.step {
  text-align: center;
  display: flex;
  padding: 45px 33px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  transition: 0.3s ease;
}
.step-number {
  color: #fff;
  -webkit-text-stroke-width: 5.3px;
  -webkit-text-stroke-color: #0e3228;
  font-size: 132.513px;
  line-height: 164.316px;
  letter-spacing: 9.276px;
}
.step-title {
  color: #0b362a;
  font-size: 40px;
  line-height: 44.171px;
  text-align: left;
}
.step-highlighted {
  border-radius: 30px;
  background: #f5f5f5;
  box-shadow: 0px 0px 31.8px 0px rgba(0, 0, 0, 0.15);
}
.step-description {
  color: #333;
  font-family: Roboto;
  font-size: 18px;
  line-height: 24px;
  opacity: 0;
}
.step-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.step:hover {
  border-radius: 30px;
  background: #f5f5f5;
  box-shadow: 0px 0px 31.8px 0px rgba(0, 0, 0, 0.15);
}
.step:hover .step-description {
  opacity: 1;
}
.step-highlighted .step-description {
  opacity: 1;
}
.sec-5-heading h2 {
  color: #000;
  font-size: 90px;
  line-height: 98px; /* 206.667% */
  letter-spacing: -0.9px;
}
.sec-6-heading {
  border-radius: 30px;
  background: #eaeaea;
  overflow: hidden;
  height: 100%;
}
.padding {
  padding: 45px 50px 0;
}
.sec-6-heading h3 {
  color: #000;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
.sec-6-heading p {
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  line-height: 30px;
}
.sec-6-heading a {
  color: #333;
  font-size: 35px;
  line-height: normal;
}
.sec-6-heading.color-green {
  background: #cfff76;
}

/* Country Code */
.newcountrycode {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 0;
  background: transparent;
  padding: 15px 15px;
  border-bottom: 2px solid #1cbd87;
}
.newcountrycode select {
  width: 46px;
  border: 0;
  padding: 0px 19px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.newcountrycode .countrycode {
  width: 54px;
  border: 0;
  background: transparent;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  margin: 0 0px;
  border-bottom: 0 !important;
}
.newcountrycode .phone-field {
  width: 100%;
  border-bottom: 0 !important;
}
.newcountrycode input {
  border: 0;
}
.newcountrycode.contact-dd input {
  padding: unset;
  border: unset;
}
/* Country Code */

.input-field input,
.input-field textarea {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  border-radius: 0;
  border-bottom: 2px solid #1cbd87 !important;
  border: 0;
  background: transparent;
  padding: 18px 15px 15px 0;
}
.form1 {
  padding: 14px 50px;
}
.input-field {
  margin-bottom: 24px;
}
.input-field button {
  border-radius: 50.942px;
  background: #000;
  box-shadow: 0px 1.455px 2.911px 0px rgba(0, 0, 0, 0.05);
  color: #fff;
  font-size: 30px;
  padding: 22px 45px;
  margin-top: 37px;
}
.input-field input::placeholder,
.input-field textarea::placeholder {
  color: #000;
}

ul.five-points li {
   border-radius: 70px;
    border: 1px solid rgb(255 255 255 / .55);
    background: #c6c6c5;
    padding: 10px 20px;
    color: #000;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
}
ul.five-points {
  display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

/* Sec Headings */
.sec-heading.center {
  text-align: center;
}
.sec-heading h2 {
  font-size: 194px;
  line-height: 194px;
  color: #02b4de;
  transform: skew(358deg, 340deg);
}
.sec-heading.white h2 {
  color: white;
}
.sec-heading p {
  margin: 1rem 0;
  font-family: Roboto;
  font-size: 30px;
  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: 4rem 0;
  position: relative;
}
/* sections */

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.theme-btn {
  padding: 15px 30px;
  background: var(--primary);
  font-weight: 400;
  border: 2px solid var(--primary);
  transition: 0.5s ease;
  color: #2b2e4b;
  font-size: 30px;
  line-height: 34.932px;
  border-radius: 50.942px;
  box-shadow: 0px 1.455px 2.911px 0px rgba(0, 0, 0, 0.05);
}
.theme-btn.bordered {
  background: transparent;
  color: var(--black);
}
.btn-wrap .theme-btn:hover {
  transform: scale(1.03);
}
/* Theme Buttons */

/* footer */
footer {
  background: #23245b;
  padding: 56px 0;
}
.footer-logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.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: #fff;
  font-size: 20px;
  line-height: 46px;
}
.footer-logo-container div p,
.footer-logo-container div a {
  color: #fff;
  font-size: 30px;
  line-height: 25px;
}
.footer-images-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 97px;
  border: 2px solid #fff;
  margin-top: 45px;
  padding: 10px;
  justify-content: space-around;
  width: 80%;
  margin: 45px auto 0;
}
.stars-desc-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stars-desc {
  display: flex;
  gap: 10px;
}
.stars-desc h2 {
  color: #fff;
  font-size: 34.847px;
  line-height: 119.5%;
  padding-right: 10px;
  border-right: 1px solid #fff;
}
.stars-desc img {
  object-fit: contain;
}
.stars-desc-container p {
  color: #fff;
  line-height: 119.5%;
  font-family: Roboto;
  font-size: 13.115px;
}
.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 {
  color: #fff;
  font-size: 21.468px;
  line-height: normal;
}
.copyright-sec {
  padding: 10px 0;
  background: #000;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p,
.copyright a {
  color: #fff;
  font-family: "Roboto";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  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 */
.inner-header h1.banner-heading {
  font-size: 66px;
}
ul.list-ul {
  list-style: disc;
  margin-left: 22px;
}
.terms ul {
  line-height: 25px;
  font-size: 16px;
  color: #333;
}
.terms ul li {
  margin-bottom: 1rem;
  font-family: "Roboto";
}
.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}
.terms h4 {
  font-size: 26px;
  margin: 2rem 0 1rem;
}
.terms p {
  margin-bottom: 1rem;
  font-family: "Roboto";
}
/* terms */

.popupmain{position:fixed;top:50%;transform:translateY(-50%);left:0;right:0;margin:auto;width:100%;background:url(../images/popup-bg.webp);background-size:cover;background-position:center;box-shadow:0 0 30px -9px #0000006e;z-index:9999999;
overflow:hidden;display:none;border-radius:30px;max-width:1100px;max-height:90vh;overflow-y:auto}.popautobg{background:url(../images/autopopup-bg.webp);background-size:cover;background-position:center}
.popautobg::after{content:"";position:absolute;bottom:5rem;left:50%;transform:translateX(-90%);width:150px;height:120px;background:url(../images/autopopup-obj.webp);background-size:contain;background-position:center;background-repeat:no-repeat}
.mmpopup{text-align:center;display:flex;justify-content:flex-end;}.mmpopup .content-sec{border-radius: 0 22px 22px 0;background:#fff;padding:30px;max-width:576px}.mmpopup .formpop{width:100%;margin:24px auto}
.mmpopup .fld-input{width:100%;border-radius:10px;margin-bottom:1.5rem;overflow:hidden;background-color:#efefef}.mmpopup .centercont h3{font-size:38px;color:#141515;margin-bottom:20px}
.mmpopup .centercont h4{font-size:20px;color:#566060;margin-bottom:15px}.mmpopup .centercont h4 span{color:#86cb92}.mmpopup .centercont h4 span span{display:none}
.mmpopup .centercont p{color:#333;font-size:20px;font-weight:400;line-height:1.2;text-align:left;margin-bottom:10px; font-family: 'Roboto';}
.closeico{position:absolute;top:15px;right:15px;z-index:9999;width:35px;height:35px;display:flex;align-items:center;justify-content:center;background:var(--primary);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 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}
.mmpopup .centercont h3 span{color:#333;font-family:var(--font-heading);font-size:45px;font-style:normal;font-weight:400;line-height:1.1;text-align:left}.mmpopup .centercont h4 span{font-weight:700;color:#000;font-size:60px}
.fld-input input{width:100%;padding:22px;font-size:16px;letter-spacing:.2px;background:#efefef;border:0!important;outline:0!important;box-shadow:none;border-radius:10px; font-family: 'Roboto';}.fld-input input::placeholder{color:#000;font-size:18px;font-weight:400}
.fld-btn{display:flex;justify-content:flex-start}.fld-btn button{border:none}.mmpopup {text-align:left;color:#000;font-size:16px;font-weight:400;line-height:normal}
.mmpopup  b{font-weight:600;}.mmpopup {gap:1rem;}.mmpopup p{text-align:left;color:#000; font-family: 'Roboto';}.mmpopup p{color:#000}
.mmpopup .review-sites {
    gap: 1rem;
    margin-top: 1rem;
}
.review-sites {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* pckg-sec */
.padding1 {
    padding-left: 12%;
    padding-right: 12%;
}
.pckg-sec {
    background: #EEF2FF;
}
.pkg-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.pckg {
    height: 100%;
    padding: 0rem 1.5rem 0 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 6px 14px 16px 0px #00000040;
    border-radius: 36px;
    border: 4px solid #000;
    background: #CFFF76;
    overflow: hidden;
    transition: 0.3s ease;
}
.pckg .btn-wrap a {
    border-radius: 50.942px;
    background: #1A1228;
    box-shadow: 0px 1.455px 2.911px 0px rgba(0, 0, 0, 0.05);
    color: #FFF !important;
    font-family: Anton;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.932px; /* 116.44% */
}
.pckg .upper {
    border-radius: 37.973px;
    border: 3px solid #000;
    background: #FFF;
    box-shadow: 3.556px 5.334px 0px 0px #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 22px 20px 0;
    overflow: hidden;
}
.pckg .upper .uspto {
    color: #000;
    text-align: center;
    font-family: Anton;
    font-size: 25.164px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.503px;
}
.pckg .title {
    padding: 21px 30px;
    justify-content: center;
    border-radius: 0px 0px 35px 35px;
    background: #000;
    color: #FFE878;
    text-align: center;
    font-family: 'Roboto';
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px; /* 80% */
    letter-spacing: -0.6px;
    width: 270px;
    margin: 0 auto;
}
.pckg .upper h2 {
    font-family: Anton;
    font-size: 68.62px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1.372px;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    margin-bottom: 1.5rem;
    text-align: center;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
}
.pckg .upper .price .amount {
    font-weight: 800;
    font-size: 48px;
    line-height: 40px;
    color: #000000;
}
.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary);
}
.pckg .bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    height: 80%;
}
.del-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33.5px 0;
}
.del-btn a {
    color: #000;
    font-family: Anton;
    font-size: 24px;
}
.bottom span {
    color: #0B0B0B;
    font-family: Anton;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.84px;
    padding: 18px 0 0;
}
.pckg .bottom ul li {
    display: flex;
    align-items: center;
    color: #0B0B0B;
    font-family: 'Roboto';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px; /* 175% */
    letter-spacing: -0.4px;
    gap: 10px;
    justify-content: start;
}
.pckg .bottom ul {
    height: 210px;
    overflow-y: auto;
    margin: 24px 0 2rem;
}
.pckg .bottom p {
    font-weight: 500;
    color: var(--primary);
    line-height: 1.3;
}
.pckg:hover {
    border: 4px solid #F65608;
    background: #FFF;
}
.pckg:hover .title {
    background: #f4531f;
    color: #fff;
}
/* packages */



@media (max-width: 1440px) {
    .sec4-text-wrap h2 {
        font-size: 80px;
    }
    .sec-heading p {
        font-size: 26px;
    }
    .banner-img {
        width: auto;
    }
    .banner-slider .slick-list.draggable {
        padding-right: 0%;
    }
    .details {
        padding: 0 6px;
    }
    h1.banner-heading {
        font-size: 162px;
        line-height: 162px;
    }
    .banner-img p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 12px;
    }
    .client-info h4 {
        font-size: 15px;
    }
    .pkg-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.pckg .title {
    padding: 14px 30px;
    font-size: 20px;
    width: 100%;
}
.padding1 {
    padding-left: 0%;
    padding-right: 0%;
}
.pckg .upper h2 {
    font-size: 40.62px;
}
.pckg .upper {
    border-radius: 12.973px;
    padding: 0px 10px;
    overflow: hidden;
}
.bottom span {
    font-size: 28px;
    padding: 6px 0 0;
}
.pckg .bottom ul {
    margin: 16px 0 1rem;
}
.pckg .bottom ul li {
    font-size: 16px;
}
.pckg .btn-wrap a {
    font-size: 20px;
    line-height: 20.932px;
}
.del-btn a {
    font-size: 16px;
}
.del-btn {
    padding: 16.5px 0;
} 

}

@media (max-width: 1200px) {
  header {
    padding: 1rem 0;
  }
  .btns {
    margin: 0 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: none;
    top: 0px;
  }
  .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: 0;
    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: start;
    padding: 1rem;
    gap: 1rem;
    align-items: center;
  }
  .header-btn {
    font-size: 16px !important;
    line-height: 16px;
  }
  header .main-header ul.menu > li > a:before {
    display: none;
  }
  h1.banner-heading {
    margin-bottom: 0rem;
    font-size: 130px;
    line-height: 132px;
  }
  span.sub-heading {
    font-size: 42px;
    line-height: 38.4px;
  }
  .slider-wrapper {
    margin-right: -28px;
  }
  .banner-slider .slick-list.draggable {
    padding-right: 0;
  }
  .banner-img {
    width: auto;
    filter: blur(0px);
    margin-bottom: 16px;
  }
  .slider-wrap {
    margin: 130px 0 0 -56px;
  }
  .banner-img p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
  }
  .rating-text {
    margin-right: 0;
    padding: 10px 0;
  }
  .banner-list li {
    font-size: 18px;
  }
  .main-header {
    padding: 0;
  }
  .sec-heading h2 {
    font-size: 135px;
    line-height: 130px;
  }
  .sec-1 .sec-heading {
    margin-top: -86px;
  }
  section.sec-1 {
    margin-top: 18px;
  }
  .sec-2 .sec-heading h2 {
    font-size: 70px;
    line-height: 82px;
  }
  section.sec-2 {
    padding: 115px 0 132px;
  }
  .sec4-image {
    max-width: 49%;
  }
  section.sec-4:before {
    width: 100%;
  }
  .sec4-text-wrap span {
    font-size: 22px;
  }
  .sec4-text-wrap h2 {
    font-size: 62px;
    line-height: 64px;
  }
  .sec4-text-wrap {
    margin-bottom: 80px;
  }
  .sec-heading p {
    font-size: 18px;
    line-height: 26px;
  }
  .sec-4 .btn-wrap {
    margin-top: 18px;
  }
  .ponits-wrap {
    max-width: 100%;
  }
  ul.five-points li {
   
  }
  .sec-5-heading h2 {
    font-size: 58px;
    line-height: 66px;
  }
  .step-number {
    -webkit-text-stroke-width: 3.3px;
    font-size: 50.513px;
    line-height: 74.316px;
  }
  .step-title {
    font-size: 24px;
    line-height: 28.171px;
  }
  .step {
    padding: 30px 25px;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-radius: 30px;
    background: #f5f5f5;
    box-shadow: 0px 0px 31.8px 0px rgba(0, 0, 0, 0.15);
  }
  .step-description {
    font-size: 16px;
    opacity: 1;
  }
  .padding {
    padding: 30px 30px 0;
  }
  .sec-6-heading h3 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 12px;
  }
  .input-field {
    margin-bottom: 10px;
  }
  .input-field button {
    font-size: 18px;
    padding: 18px 45px;
    margin-top: 15px;
  }
  .footer-logo-container div p,
  .footer-logo-container div a {
    font-size: 20px;
    line-height: 16px;
  }
  .footer-images-container {
    width: 100%;
    margin: 40px auto 0;
  }
  footer {
    padding: 34px 0;
  }
  ul.menu {
    display: flex;
    align-items: center;
    }
    
    .menu-details {
        display: flex;
        align-items: center;
        justify-content: end;
    }
.pkg-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.pckg .title {
    padding: 14px 30px;
    font-size: 20px;
    width: 100%;
}
.padding1 {
    padding-left: 0%;
    padding-right: 0%;
}
.pckg .upper h2 {
    font-size: 40.62px;
}
.pckg .upper {
    border-radius: 12.973px;
    padding: 0px 10px;
    overflow: hidden;
}
.bottom span {
    font-size: 28px;
    padding: 6px 0 0;
}
.pckg .bottom ul {
    margin: 16px 0 1rem;
}
.pckg .bottom ul li {
    font-size: 16px;
}
.pckg .btn-wrap a {
    font-size: 20px;
    line-height: 20.932px;
}
.del-btn a {
    font-size: 16px;
}
.del-btn {
    padding: 16.5px 0;
}  

}

@media (max-width: 1199px) {
  .btn-wrap .theme-btn {
    font-size: 18px;
  }
  .overlap-slider {
    /* width: 180%; */
    width: 100%;
    position: relative;
  }
  .slider-wrap {
        margin: 130px 0 0 0px;
   }
  .ban-img {
    display: none;
}
.pkg-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.pckg .title {
    padding: 14px 30px;
    font-size: 20px;
    width: 100%;
}
.padding1 {
    padding-left: 0%;
    padding-right: 0%;
}
.pckg .upper h2 {
    font-size: 40.62px;
}
.pckg .upper {
    border-radius: 12.973px;
    padding: 0px 10px;
    overflow: hidden;
}
.bottom span {
    font-size: 28px;
    padding: 6px 0 0;
}
.pckg .bottom ul {
    margin: 16px 0 1rem;
}
.pckg .bottom ul li {
    font-size: 16px;
}
.pckg .btn-wrap a {
    font-size: 20px;
    line-height: 20.932px;
}
.del-btn a {
    font-size: 16px;
}
.del-btn {
    padding: 16.5px 0;
}  
  
}

/* iPads (landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* Styles */
  h1.banner-heading {
    margin-bottom: 0rem;
    font-size: 140px;
    line-height: 154px;
  }
  .ban-img {
    display: none;
  }
  .slider-wrapper {
    margin-right: 0;
  }
  .slider-wrap {
    margin: 124px 0 0 0px;
  }
  .banner-slider .slick-list.draggable {
    padding-right: 0%;
  }
  .banner-img {
    width: auto;
    filter: blur(0px);
  }
  .banner-content {
    padding: 58px 0 50px;
  }
  .sec-heading h2 {
    font-size: 106px;
    line-height: 106px;
  }
  section.sec-1 {
    margin-top: 46px;
  }
  .sec-1 .sec-heading {
    margin-top: -78px;
  }
  .sec-2 .sec-heading h2 {
    font-size: 62px;
    line-height: 76px;
  }
  section.sec-2 {
    padding: 100px 0 138px;
  }
  .sec4-image {
    position: relative;
    max-width: 100%;
  }
  section.sec-4:before {
    width: 100%;
  }
  .sec4-text-wrap span {
    font-size: 22px;
  }
  .sec4-text-wrap h2 {
    font-size: 62px;
    line-height: 64px;
  }
  .sec4-text-wrap {
    margin-bottom: 118px;
  }
  .sec-heading p {
    font-size: 18px;
    line-height: 26px;
  }
  .sec-4 .btn-wrap {
    margin-top: 18px;
  }
  .ponits-wrap {
    max-width: 100%;
  }
  ul.five-points li {
    
  }
  section.sec-4 {
    padding: 1rem 0;
  }
  .sec-5-heading h2 {
    font-size: 58px;
    line-height: 66px;
  }
  .step-number {
    -webkit-text-stroke-width: 3.3px;
    font-size: 50.513px;
    line-height: 74.316px;
  }
  .step-title {
    font-size: 24px;
    line-height: 28.171px;
  }
  .step {
    padding: 30px 25px;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-radius: 30px;
    background: #f5f5f5;
    box-shadow: 0px 0px 31.8px 0px rgba(0, 0, 0, 0.15);
  }
  .step-description {
    font-size: 16px;
    opacity: 1;
  }
  .padding {
    padding: 30px 30px 0;
  }
  .sec-6-heading h3 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 12px;
  }
  .input-field {
    margin-bottom: 10px;
  }
  .input-field button {
    font-size: 18px;
    padding: 18px 45px;
    margin-top: 15px;
  }
  .footer-logo-container div p,
  .footer-logo-container div a {
    font-size: 20px;
    line-height: 16px;
  }
  .footer-images-container {
    width: 100%;
    margin: 40px auto 0;
  }
  footer {
    padding: 34px 0;
  }
  .menu-details {
    display: flex;
    align-items: center;
    justify-content: end;
}
ul.menu {
    display: flex;
}
.logo {
    display: flex;
    text-align: center;
    justify-content: center;
}
.footer-social-icons {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}
.footer-logo-container div:not(:last-child) {
    border-right: 0;
}
.pkg-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.pckg .title {
    padding: 14px 30px;
    font-size: 20px;
    width: 100%;
}
.padding1 {
    padding-left: 0%;
    padding-right: 0%;
}
.pckg .upper h2 {
    font-size: 54.62px;
}
.pckg .upper {
    border-radius: 12.973px;
    padding: 0px 10px;
    overflow: hidden;
}
.bottom span {
    font-size: 28px;
    padding: 6px 0 0;
}
.pckg .bottom ul {
    margin: 16px 0 1rem;
}
.pckg .bottom ul li {
    font-size: 16px;
}
.pckg .btn-wrap a {
    font-size: 20px;
    line-height: 20.932px;
}
.del-btn a {
    font-size: 16px;
}
.del-btn {
    padding: 16.5px 0;
}


}

/* iPads (portrait) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* Styles */

  header {
    padding: 1rem 0;
  }
  .banner-content {
    padding: 54px 0 20px;
  }
  span.sub-heading {
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: 3.4px;
    padding: 0px 0;
  }
  h1.banner-heading {
    font-size: 68px;
    line-height: 52px;
    margin-bottom: 30px;
  }
  p.banner-text {
    max-width: 100%;
    font-size: 22px;
    line-height: 40px;
  }
  .sec-heading h2 {
    font-size: 78px;
    line-height: 74px;
    transform: skew(0deg, 0deg);
  }
  .sec-heading p {
    font-size: 16px;
    line-height: 26px;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
  .logo img {
    display: block;
    max-width: 165px;
  }
  .main-header {
    padding: 0px 0;
  }
  .text-wrap {
    margin-bottom: 0;
    margin-right: 0;
    transform: skew(0deg, 0deg);
  }
  .ban-img {
    display: none;
  }
  .slider-wrapper {
    margin-right: 0;
  }
  .slider-wrap {
    margin: 0;
    margin-top: 25px;
  }
  .banner-list li {
    font-size: 18px;
  }
  ul.banner-list {
    /* flex-direction: column; */
    align-items: start;
    gap: 2rem;
  }
  .banner-slider .slick-list.draggable {
    padding-right: 0;
  }
  .banner-img {
    padding: 12px;
    width: auto;
    margin-bottom: 16px;
    filter: blur(0px);
  }
  .details {
    padding: 0 10px;
  }
  .client-info h4 {
    font-size: 14px;
    line-height: 16px;
  }
  .banner-img p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
  }
  .rating-text {
    margin-right: 0;
    padding: 12px 0;
  }
  .sec-1 .sec-heading {
    margin-top: 0;
  }
  section.sec-1 {
    margin-top: 0;
  }
  section {
    padding: 3rem 0;
  }
  .port-card {
    text-align: center;
  }
  .sec-2 .sec-heading h2 {
    font-size: 44px;
    line-height: 56px;
  }
  section.sec-2 {
    background-position: right;
    padding: 72px 0;
  }
  .sec-3 .sec-heading p {
    font-size: 16px;
    line-height: 26px;
  }
  .btn-wrap .call-btn {
    font-size: 22px;
  }
  .sec4-image {
    display: none;
  }
  section.sec-4:before {
    width: 100%;
  }
  .sec4-text-wrap {
    transform: skew(0deg, 0deg);
    margin-bottom: 22px;
  }
  .sec4-text-wrap h2 {
    font-size: 48px;
    line-height: 56px;
  }
  .sec-5-heading h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .sec-5-heading p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
  }
  .step-number {
    -webkit-text-stroke-width: 3.3px;
    font-size: 50.513px;
    line-height: 74.316px;
  }
  .step-title {
    font-size: 24px;
    line-height: 28.171px;
  }
  .step {
    padding: 30px 25px;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-radius: 30px;
    background: #f5f5f5;
    box-shadow: 0px 0px 31.8px 0px rgba(0, 0, 0, 0.15);
  }
  .step-description {
    font-size: 16px;
    opacity: 1;
  }
  .padding {
    padding: 28px 18px 0;
  }
  .sec-6-heading h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .sec-6-heading a {
    font-size: 24px;
  }
  .form1 {
    padding: 14px 24px;
  }
  .input-field button {
    font-size: 20px;
    padding: 22px 33px;
    margin-top: 4px;
  }
  .sec-6-heading {
    margin-bottom: 1rem;
    height: auto;
  }
  .footer-logo-container {
    flex-direction: column;
    padding: 0;
    gap: 2rem;
    align-items: self-start;
  }
  .footer-social-icons {
    /* flex-direction: column; */
    gap: 2rem;
    align-items: self-start;
  }
  .footer-logo-container div h4 {
    font-size: 16px;
    line-height: 30px;
  }
  .footer-logo-container div p,
  .footer-logo-container div a {
    font-size: 16px;
    line-height: 12px;
  }
  .footer-logo-container div:not(:last-child) {
    border-right: 0;
    padding-right: 0;
  }
  footer {
    padding: 30px 0;
  }
  .footer-images-container {
    /* flex-direction: column; */
    width: 100%;
    margin: 28px 0 0;
    border: 0;
    gap: 1rem;
  }
  .footer-review-container {
    gap: 0px;
  }
  .footer-review-container p {
    font-size: 18.468px;
  }
  .copyright p,
  .copyright a {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
  .menu-details {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.menu {
    display: flex;
}
.logo {
    display: flex;
    text-align: center;
    justify-content: center;
}
.popautobg {
    background: none;
    display: none;
}
.popautobg::after{
     display: none;
}
.review-sites {
    display: none;
}
.mmpopup .content-sec {
    max-width: 100%;
    border-radius:22px;
}
.mmpopup {
    justify-content: center;
    padding: 10px;
}
.pkg-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.pckg .title {
    padding: 14px 30px;
    font-size: 20px;
    width: 100%;
}
.padding1 {
    padding-left: 0%;
    padding-right: 0%;
}
.pckg .upper h2 {
    font-size: 54.62px;
}
.pckg .upper {
    border-radius: 12.973px;
    padding: 0px 10px;
    overflow: hidden;
}
.bottom span {
    font-size: 28px;
    padding: 6px 0 0;
}
.pckg .bottom ul {
    margin: 16px 0 1rem;
}
.pckg .bottom ul li {
    font-size: 16px;
}
.pckg .btn-wrap a {
    font-size: 20px;
    line-height: 20.932px;
}
.del-btn a {
    font-size: 16px;
}
.del-btn {
    padding: 16.5px 0;
}

}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  header {
    padding: 1rem 0;
  }
  .banner-content {
    padding: 54px 0 20px;
  }
  span.sub-heading {
    margin-bottom: 0;
    font-size: 22px;
    letter-spacing: 3.4px;
    padding: 0px 0;
  }
  h1.banner-heading {
    font-size: 40px;
    line-height: 36px;
    margin-bottom: 0;
  }
  p.banner-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 25px;
  }
  .btn-wrap {
    flex-direction: column;
    margin-bottom: 0rem;
  }
  .btn-wrap a {
    width: 100%;
    text-align: center;
  }
  .sec-heading h2 {
    font-size: 32px;
    line-height: 40px;
    transform: skew(0deg, 0deg);
  }
  .sec-heading p {
    font-size: 16px;
    line-height: 26px;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
  .logo img {
    display: block;
    max-width: 165px;
  }
  .main-header {
    padding: 0px 0;
  }
  .text-wrap {
    margin-bottom: 0;
    margin-right: 0;
    transform: skew(0deg, 0deg);
  }
  .ban-img {
    display: none;
  }
  .slider-wrapper {
    margin-right: 0;
  }
  .slider-wrap {
    margin: 0;
    margin-top: 25px;
  }
  .banner-list li {
    font-size: 14px;
  }
  ul.banner-list {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  .banner-slider .slick-list.draggable {
    padding-right: 0;
  }
  .banner-img {
    padding: 12px;
    width: auto;
    margin-bottom: 16px;
  }
  .details {
    padding: 0 10px;
  }
  .client-info h4 {
    font-size: 16px;
    line-height: 16px;
  }
  .banner-img p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
  }
  .rating-text {
    margin-right: 0;
    padding: 12px 0;
  }
  .rating-text p {
    flex-direction: column;
  }
  .sec-1 .sec-heading {
    margin-top: 0;
  }
  section.sec-1 {
    margin-top: 0;
  }
  section {
    padding: 3rem 0;
  }
  .port-card {
    text-align: center;
  }
  .sec-2 .sec-heading h2 {
    font-size: 44px;
    line-height: 56px;
  }
  section.sec-2 {
    background-position: right;
    padding: 72px 0;
  }
  .sec-3 .sec-heading p {
    font-size: 16px;
    line-height: 26px;
  }
  .btn-wrap .call-btn {
    font-size: 22px;
  }
  .sec4-image {
    display: none;
  }
  section.sec-4:before {
    width: 100%;
  }
  .sec4-text-wrap {
    transform: skew(0deg, 0deg);
    margin-bottom: 22px;
  }
  .sec4-text-wrap h2 {
    font-size: 48px;
    line-height: 56px;
  }
  .sec-5-heading h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .sec-5-heading p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
  }
  .step-number {
    -webkit-text-stroke-width: 3.3px;
    font-size: 50.513px;
    line-height: 74.316px;
  }
  .step-title {
    font-size: 24px;
    line-height: 28.171px;
  }
  .step {
    padding: 30px 25px;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-radius: 30px;
    background: #f5f5f5;
    box-shadow: 0px 0px 31.8px 0px rgba(0, 0, 0, 0.15);
  }
  .step-description {
    font-size: 16px;
    opacity: 1;
  }
  .padding {
    padding: 28px 18px 0;
  }
  .sec-6-heading h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .sec-6-heading a {
    font-size: 24px;
  }
  .form1 {
    padding: 14px 24px;
  }
  .input-field button {
    font-size: 20px;
    padding: 22px 33px;
    margin-top: 4px;
  }
  .sec-6-heading {
    margin-bottom: 1rem;
    height: auto;
  }
  .footer-logo-container {
    flex-direction: column;
    padding: 0;
    gap: 2rem;
    align-items: self-start;
  }
  .footer-social-icons {
    flex-direction: column;
    gap: 1rem;
    align-items: self-start;
  }
  .footer-logo-container div h4 {
    font-size: 16px;
    line-height: 30px;
  }
  .footer-logo-container div p,
  .footer-logo-container div a {
    font-size: 16px;
    line-height: 12px;
  }
  .footer-logo-container div:not(:last-child) {
    border-right: 0;
    padding-right: 0;
  }
  footer {
    padding: 30px 0;
  }
  .footer-images-container {
    flex-direction: column;
    width: 100%;
    margin: 28px 0 0;
    border: 0;
    gap: 1rem;
  }
  .footer-review-container {
    gap: 0px;
  }
  .footer-review-container p {
    font-size: 18.468px;
  }
  .copyright p,
  .copyright a {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
  .inner-header h1.banner-heading {
    font-size: 38px;
    margin-top: 25px;
  }
  .error-text {
    font-size: 45px;
    line-height: 26px;
  }
  .error-heading {
    font-size: 34px;
  }
  .thankyou-text {
    font-size: 16px;
    initial-letter: 30;
    line-height: 26px;
  }
  ul.menu.btns {
    display: none;
}
.menu-details {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.menu {
    display: flex;
}
.logo {
    display: flex;
    text-align: center;
    justify-content: center;
}
.mmpopup .centercont h3 span {
    font-size: 26px;
}
.mmpopup .centercont p {
    font-size: 14px;
}
.mmpopup .content-sec {
    padding: 20px;
}
.fld-btn button {
    font-size: 16px;
    padding: 4px 30px;
}
.popautobg {
    background: none;
    display: none;
}
.popautobg::after{
     display: none;
}
.review-sites {
    display: none;
}
.mmpopup .content-sec {
    max-width: 100%;
    border-radius:22px;
}
.mmpopup {
    justify-content: center;
    padding: 10px;
}
.pkg-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}
.upper img {
    display: none;
}
.pckg .title {
    padding: 14px 30px;
    font-size: 20px;
    width: 100%;
}
.padding1 {
    padding-left: 0%;
    padding-right: 0%;
}
.pckg .upper h2 {
    font-size: 54.62px;
}
.pckg .upper {
    border-radius: 12.973px;
    padding: 20px 20px;
}
.bottom span {
    font-size: 28px;
    padding: 6px 0 0;
}
.pckg .bottom ul {
    margin: 16px 0 1rem;
}
.pckg .bottom ul li {
    font-size: 16px;
}
.pckg .btn-wrap a {
    font-size: 20px;
    line-height: 20.932px;
}
.del-btn a {
    font-size: 16px;
}
.del-btn {
    padding: 16.5px 0;
}








}
