/*Main Css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #FCD65B;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Sofia Pro" , sans-serif;he
    --font-accent: "Montserrat" , sans-serif;
    --font-body: "Montserrat" , 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: #5B5B5B;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
    color: #000000;
}

*: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: 36px 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: 18px;
    width: 18px;
    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: #fcd65b;
    width: 18px;
}

/*header css*/
header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: fixed;
    background: transparent;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
}
.main-header {
    padding: 1rem 0;
}
header.sticky{
    background: #080808;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}
.inner-header header {
    background: #000;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
    max-width: 180px;
}
.logo img {
    display: block;
}
.logo h2 {
    font-size: 23px;
    text-align: center;
}

/* 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 20px;
}
.menu > li > a {
    display: block;
    font-size: 15px;
    /* text-transform: uppercase; */
    font-weight: 500;
    color: #fff;
}
.header-btn {
    background: var(--primary);
    color: black !important;
    padding: 15px 20px;
    border-radius: 40px;
    font-weight: 400 !important;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--white);
}


@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: .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;
    }
}

ul.pricing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
ul.pricing-nav a {
  padding: 15px 18px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #000000;
  border-radius: 5px;
  color: #000;
  background: var(--primary);
}
ul.pricing-nav li.active a {
  background: #000;
  color: white;
  border-color: #000 !important;
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 180px 0 125px;
}
h1.banner-heading {
    font-size: 52px;
    line-height: 56px;
    margin-bottom: 24px;
    font-weight: 900;
}
h1.banner-heading span {
    color: var(--primary);
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}
p.banner-text {
    font-weight: 500;
    font-size: 19.2px;
    line-height: 30px;
    margin-bottom: 36px;
    color: #5F5F5F;
}
ul.banner-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    list-style: disc;
    margin: 47px 0;
}
ul.banner-list li {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
section.sec-1 {
    background: var(--primary);
    padding: 2rem 0 ;
}
.sec-heading h3 {
    font-size: 22.4px;
    font-weight: 700;
    font-family: 'Montserrat';
}
ul.trusted-companies {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    align-items: center;
}

.ban-form input{padding: 1.25rem 1rem;border: 1px solid #fff;width: 100%;border-radius: 5px;background: #fff}
.form-list .newcountrycode{background-color: #fff}
.ban-form button{background: var(--primary);width: 100%;height: fit-content;border: 0;border-radius: 5px;font-weight: 600;font-size: 18px;color: black;padding: 1rem;border: 1px solid #000}
.offer-text {
    font-size: 28px;
    color: #fff;
    text-align: center;
    padding-bottom: 1rem;
    font-weight: 500;
}
.offer-text span {
    color: var(--primary);
}
.trusted{display: flex;align-items: center;gap: 5px;font-weight: 500;justify-content: center;flex-wrap: wrap;color: #fff;}
.form-list{display: flex;align-items: center;gap: 1rem}.form-list > div{width: 25%}.bglight{background: #a9a9a921;padding: 30px}
.sec-heading h2 span{color: crimson;font-size: 50px;font-weight: 600}

section.banner-form {
    padding: 30px 0;
    background: #a9a9a921;
}

/* Country Code */
.newcountrycode{position: relative;display: flex;align-items: center;border: 1px solid #fff;height: 60px;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: #fff;text-align: center;padding: 5px;border-radius: 5px;margin: 0 10px}
.newcountrycode .phone-field{width: 100%}.newcountrycode input{border: 0}.newcountrycode.contact-dd input{padding: unset;border: unset}
/* Country Code */

.sec-heading small{font-size: 27.2px;color: #000;line-height: 32px;margin: 15px 0;display: block}
.line{width: 384px;height: 8px;background: var(--primary);border-radius: 8px;margin: 30px auto}
.sec-heading span{color: #000;font-size: 24px;font-weight: 600}
.process-card{box-shadow: 0px 0px 20px 5px #0000000D;border-radius: 10px;text-align: center;padding: 50px;transition: 0.3s ease;border: 1px solid #fff;position: relative;overflow: hidden;height: 100%}
.process-card h3{font-size: 17.6px;line-height: 20px;padding: 12px 0 17px}.process-card p{font-size: 15px;line-height: 24px}
.process-card:hover{border: 1px solid #FCD65B}.process-card:hover:before{content: "";display: block;position: absolute;height: 3px;width: 100%;background: var(--primary);bottom: 0;left: 0}
.benefit-card{box-shadow: 0px 0px 20px 5px #0000000D;background: #fff;text-align: center;position: relative;padding: 40px;border-radius: 10px;height: 100%}
.benefit-card h3{font-size: 17.6px;line-height: 20px;padding: 12px 0 17px}.benefit-card p{font-size: 15px;line-height: 24px}
.sec-3 .btn-wrap .theme-btn, .sec-3 .btn-wrap .theme-btn.bordered{background: #333333;color: #fff;padding: 15px 96px}

section.sec-4:before{content: "";display: block;position: absolute;height: 70%;width: 18%;top: -3px;left: 0;background-repeat: no-repeat;background-image: url(../images/left-vector.png)}
section.sec-4:after{content: "";display: block;position: absolute;height: 70%;width: 18%;top: -3px;right: 0;background-repeat: no-repeat;background-image: url(../images/right-vector.png);background-position: top right;z-index: -2;}
.top-image{position: absolute;top: -35%;right: -18px;z-index: 0;}
.sec-heading h4{font-size: 36px;line-height: 33px;display: flex;align-items: center;gap: 1rem}
ul.wrong-list li, ul.right-list li {
    color: #5B5B5B;
    font-size: 16px;
    line-height: 34px;
    display: flex;
    align-items: center;
}
.choose-us-card{box-shadow: 0px 0px 4px 0px #0000001f;background: #fff;padding: 35px 14px;border-radius: 12px;text-align: center;transition: 0.3s ease;height: 100%}
.choose-us-card h3{color: #0B0B0B;font-size: 24px;padding: 28px 0}
.choose-us-card p{color: #444444;font-size: 16px;line-height: 24px}
.choose-us-card:hover{background: #a9a9a921;transform: scale(1.03);box-shadow: 6px 6px var(--primary)}
ul.wrong-list li i {
    color: #c40f0f;
    font-weight: 800;
    font-size: 20px;
    margin-right: 10px;
}
ul.right-list li i {
    color: #08d031;
    font-weight: 800;
    font-size: 20px;
    margin-right: 10px;
}
.benefit-card img {
    max-width: 18%;
}

.arrow-btn {
    position: absolute;
    bottom: -5rem;
    background: #fff;
    color: #000;
    border-radius: 100px;
    user-select: none;
    cursor: pointer;
    border: 1px solid #939393;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.arrow-btn.left {
    left: 46%;
    transform: translateX(-50%);
}
.arrow-btn.right {
    left: 54%;
    transform: translateX(-50%);
}
.sec-6 {
    padding: 4rem 0 6rem;
}

.testi-slide{border: 1px solid #D6DAE4;border-radius: 8px;text-align: center;padding: 20px}
.testi-slide span{display: block;height: 60px;width: 60px;background: var(--primary);display: flex;align-items: center;justify-content: center;border-radius: 50px;color: #000;font-weight: 600;font-size: 24px;margin: 0 auto}
.testi-slide h3{font-size: 18px;font-weight: 600;padding: 15px 0}.testi-slide p{font-size: 15px;color: #000;line-height: 22px}
.testi-slide .bottom{display: flex;align-items: center;justify-content: center;margin-top: 27px}
.yellow-star{display: flex;align-items: center;justify-content: center;margin: 0 auto 10px}
.gurantee-bg{background: #a9a9a921;border-radius: 25px;padding: 35px 0}
.payment-option p{color: #22232B;font-size: 18px;font-weight: 500;display: flex;align-items: center;gap: 1rem}

/* -------------------------counter CSS------------------------  */
section.sec-counter{background: var(--primary)}ul#counter{display: flex;align-items: center;gap: 1rem;height: 100%;}
.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: 32px;color: #000;margin-bottom: 0rem;flex-shrink: 0;font-family: 'Sofia Pro';}
ul#counter li{background-repeat: no-repeat;background-position: center;width: 100%;padding: 2rem;/* text-align: center; *//* display: flex; *//* align-items: center; *//* justify-content: center; */background: #fff;box-shadow: 0px 0px 20px 1px #0000000D;border-radius: 8px;height: 100%;min-height: 200px;}
ul#counter li .counter span.text{font-size: 18px;font-weight: 400;margin-top: 14px;}
/* -------------------------counter CSS------------------------  */

/* resume-samples section */
.bt-group{display: flex;justify-content: space-between;align-items: center;gap: 20px;height: fit-content;padding: 40px 50px;
    box-shadow: 3px 3px 24px 0px #00000014;background: #fff;border-radius: 20px;width: 678px;margin: 0 auto;z-index: 99;
    position: absolute;opacity: 90%;bottom: 164px;left: 0;right: 0}
    .bt{background: transparent;color: #094d8e; border-radius: 100px;user-select: none;cursor: pointer;border: 1px solid #939393;height: 40px;width: 40px;display: flex; align-items: center;justify-content: center;z-index: 1}
.con{width: 100vw;height: 630px;transform-style: preserve-3d;perspective: 700px;position: relative;z-index: 0}
.swiper{width: 20vw;height: 100%;position: absolute;top: 0;left: calc(50% - 10vw);transform-origin: center center 0;font-size: 4rem;text-align: center;color: #fff;transition: transform 0.3s}
.swiper-1{transform: translate3d(-40vw, 0, -20vw)}
.swiper-2{transform: translate3d(-20vw, 0, -10vw)}
.swiper-3{transform: translate3d(0, 0, 0)}
.swiper-4{transform: translate3d(20vw, 0, -10vw)}
.swiper-5{transform: translate3d(40vw, 0, -20vw)}
.bt-group .btn-wrap{margin: 0}
.btn-wrap{margin-top: 1rem}
/* resume-samples section */

/* section 8 */
section.sec-8 {
  background: #000;
  padding: 50px 0;
}
.work-detail h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  padding-bottom: 15px;
}
.work-detail p {
  color: #fff;
  line-height: 22px;
}
.work-detail {
  border-bottom: 1px solid #5f5f5f;
  padding: 0 0 20px;
  margin-bottom: 15px;
}
.work-detail-wrapper {
  margin-bottom: 30px;
}
.package-card {
  border-radius: 8px;
  background: #fffef9;
  padding: 50px;
  display: flex;
  flex-direction: column;
}
.package-card h2 {
    color: #000;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 5px;
}
.package-card h2 b {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 38px;
    font-style: normal;
}
.package-card h2 span {
    color: var(--primary);
    font-size: 66px;
    line-height: 66px;
    text-shadow: 2px 2px 1px #000;
    font-style: normal;
}
.package-card p {
  color: #5f6061;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e7e7e7;
}
.package-card ul {
    margin: 40px 0;
    columns: 300px;
}
.package-card ul li {
  color: #5f6061;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}
.package-card ul li::before {
  content: "";
  width: 25px;
  height: 15px;
  background: url("../images/check-yellow.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.recommended-seal {
    position: absolute;
    top: 0rem;
    right: 1rem;
    max-width: 150px;
}

/* Accordian */
.accordion-list{position: relative}
.accordion-list li{padding: 24px 30px 24px 30px;cursor: pointer;width: 100%;margin: 0 auto;background: white;box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);border-radius: 4px;margin-bottom: 1.5rem;border: 2.01px solid #F1F1F1}
ul.accordion-list li span{display: flex;position: relative}
.accordion-list li h3{color: #000000;font-style: normal;font-weight: 500;font-size: 23px;line-height: 32px}
ul.accordion-list li h3:after{content: "\f078";font-family: "Font Awesome 5 Pro";position: absolute;right: 0;right: 0;color: #9CA3AF;transition: all 0.3s ease-in-out;font-size: 16px;font-weight: 600;top: 0}
.accordion-list li.active h4::after{color: #9CA3AF;content: "\f077"}
ul.accordion-list li.active h3:after{content: "\f077"}
.answer p{margin-top: 10px;font-size: 16px;line-height: 26px;color: #000000}
ul.accordion-list li.active .answer{display: block !important}
.accordion-list li.active{background: #a9a9a921}
/* 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);
}
  /*.popupmain {*/
  /*  position: fixed;*/
  /*  top: 50%;*/
  /*  transform: translateY(-50%);*/
  /*  left: 0;*/
  /*  right: 0;*/
  /*  margin: auto;*/
  /*  width: 925px;*/
    /* background: #fff; */
  /*  box-shadow: 0 0 30px -9px #0000006e;*/
  /*  z-index: 9999999;*/
  /*  overflow: hidden;*/
  /*  display: none;*/
  /*  border-radius: 8px;*/
  /*  max-width: 97%;*/
  /*  max-height: 95vh;*/
  /*  overflow-y: auto;*/
  /*}*/
  /*.mmpopup {*/
  /*  text-align: center;*/
  /*  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/auto-popup-bg.png");*/
  /*  background-size: cover;*/
  /*  background-position: center;*/
  /*  padding: 95px 106px;*/
  /*  display: flex;*/
  /*  align-items: center;*/
    /* position: relative; */
  /*  justify-content: center;*/
  /*}*/
  /*.mmpopup .formpop {*/
  /*  width: 100%;*/
  /*  margin: 24px auto;*/
  /*}*/
  /*.mmpopup .formpop-wrapper {*/
  /*  display: grid;*/
  /*  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
  /*  gap: 1rem;*/
  /*}*/
  /*.mmpopup .fld-input {*/
  /*  height: 50px;*/
  /*  width: 100%;*/
    /* margin-bottom: 9px; */
  /*  border-radius: 4px;*/
  /*  margin-bottom: 1rem;*/
  /*  border: 1px solid #D1D5DB;*/
  /*  overflow: hidden;*/
  /*}*/
  /*.mmpopup .centercont h3 {*/
  /*  font-size: 38px;*/
  /*  color: #141515;*/
  /*  margin-bottom: 15px;*/
  /*}*/
  /*.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: 24px;*/
  /*  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: 22px;*/
  /*  color: #ffffff;*/
    /* max-width: 390px; */
  /*  margin: auto;*/
  /*  display: block;*/
  /*  position: relative;*/
  /*  text-align: center;*/
  /*}*/
  /*.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: #fbd565;*/
  /*  text-align: left;*/
  /*}*/
  /*.mmpopup .centercont h3 {*/
  /*  font-size: 50px;*/
  /*  font-weight: 400;*/
  /*  color: #0085ff;*/
  /*}*/
  /*.mmpopup .centercont h3 span {*/
  /*  display: block;*/
    /* margin: 0 30px; */
    /* font-size: 30px; */
  /*  color: #000;*/
    /* font-family: 'CenturyGothic'; */
  /*  font-weight: 700;*/
    /* line-height: 33px; */
  /*  font-size: 48px;*/
  /*  line-height: 1.2;*/
  /*  color: #ffffff;*/
  /*  text-align: center;*/
  /*}*/
  /*.mmpopup .centercont h4 span {*/
  /*  font-weight: 700;*/
  /*  color: crimson;*/
  /*  font-size: 60px;*/
  /*}*/
  /*.fld-input {*/
  /*  border-style: solid;*/
  /*  border-width: 1px;*/
  /*  border-color: rgb(218 217 217);*/
  /*  border-radius: 5px;*/
  /*  background-color: #fff;*/
  /*  width: 354px;*/
  /*  height: 66px;*/
  /*  margin-bottom: 20px;*/
  /*}*/
  /*.fld-input input {*/
  /*  width: 100%;*/
  /*  height: 100%;*/
  /*  padding: 0 24px;*/
  /*  font-size: 16px;*/
  /*  letter-spacing: 0.2px;*/
  /*  background: #ffffff;*/
  /*  border: 0 !important;*/
  /*  outline: 0 !important;*/
  /*  box-shadow: none;*/
  /*  font-family: 'Inter';*/
  /*}*/
  /*.fld-input input::placeholder {*/
  /*  color: #737373;*/
  /*  font-weight: 400;*/
  /*}*/
  /*.fld-btn button {*/
  /* border-radius: 5px;*/
  /* background-color: var(--primary);*/
  /* width: 100%;*/
  /* color: black;*/
  /* 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-image {*/
/*    max-width: 100%;*/
/*    flex-shrink: 0;*/
/*}*/

/*.popup-image img {*/
/*    max-width: 136%;*/
/*}*/

.popupmain-new {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  /* background: #fff; */
  box-shadow: 0 0 30px -9px #0000006e;
  z-index: 9999999;
  display: none;
  /* border-radius: 8px; */
  max-height: 90vh;
}
.popupmain-new .mmpopup {
  background: url("../images/popup-bg2.webp");
  background-size: cover;
  background-position: top center;
  border-radius: 33px;
  border: 5px solid var(--primary);
  padding: 12px;
  display: flex;
  justify-content: flex-end;
}
.popupmain-new .mmpopup .popup-content {
  padding: 60px 40px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 500px;
}
.popupmain-new .mmpopup .formpop {
  width: 100%;
  margin-top: 60px;
}
.popupmain-new .mmpopup .form-text {
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
}
.popupmain-new .mmpopup .form-text a {
  color: var(--primary);
}
.popupmain-new .mmpopup .form-text a:hover {
  color: var(--secondary);
}
.popupmain-new .mmpopup .form-group-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 0;
  column-gap: 30px;
}
.popupmain-new .mmpopup .fld-input {
  height: 50px;
  width: 100%;
  /* margin-bottom: 9px; */
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  overflow: hidden;
}
.popupmain-new .mmpopup .centercont h3 {
  font-size: 38px;
  color: #141515;
  margin-bottom: 10px;
}
.popupmain-new .mmpopup .centercont h4 {
  font-size: 20px;
  color: #566060;
  margin-bottom: 15px;
}
.popupmain-new .mmpopup .centercont h4 span {
  color: #86cb92;
}
.popupmain-new .mmpopup .centercont p {
  color: #333;
  font-size: 14px;
  margin-bottom: 120px;
  line-height: 20px;
}
.popupmain-new .closeico {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 100px;
}
.popupmain-new .closeico i {
  background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
    no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.popupmain-new .closeico1 {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
}
.popupmain-new .closeico1 i {
  background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
    no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.popupmain-new .mmpopup .centercont p {
  margin-bottom: 10px;
  line-height: 23px;
  color: #565656;
  max-width: 390px;
  margin: auto;
  display: block;
  position: relative;
}
.popupmain-new .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;
}
.popupmain-new .mmpopup .centercont ul li {
  display: block;
  font-size: 15px;
  color: #000;
  padding-bottom: 12px;
}
.popupmain-new .mmpopup .centercont ul li.last {
  padding-bottom: 0;
}
.popupmain-new .mmpopup .centercont ul li i {
  color: #ff533e;
  border: 1px solid;
  border-radius: 100px;
  margin-right: 8px;
  font-size: 10px;
  padding: 3px;
}
.popupmain-new .mmpopup .centercont h4 {
  font-size: 35px;
  color: #0085ff;
}
.popupmain-new .mmpopup .centercont h3 {
  font-size: 50px;
  font-weight: 400;
  color: #0085ff;
}
.popupmain-new .mmpopup .centercont h3 span {
  color: #000;
  font-family: var(--font-body);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.popupmain-new .mmpopup .centercont h4 span {
  font-weight: 700;
  color: #000;
  font-size: 60px;
}
  .form-group.field {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    background-color: #fff;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 0;
  }
  .form-group.field input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #ffffff;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: 'Inter';
  }
  .form-group.field input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
   border-radius: 5px;
   background-color: var(--primary);
   width: 100%;
   color: black;
   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 */
.sec-heading h4.text-red {
    color: #ff0000;
}
.pckg-sec {
    /*background-color: #EEF2FF;*/
    padding: 4rem 0 6rem;
}
.pckg-slider .arrow-btn {
    position: absolute;
    bottom: -4rem;
    background: #fff;
    color: #000;
    border-radius: 100px;
    user-select: none;
    cursor: pointer;
    border: 1px solid #939393;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.pckg-slider .arrow-btn.left {
    left: 46%;
    transform: translateX(-50%);
}
.pckg-slider .arrow-btn.right {
    left: 54%;
    transform: translateX(-50%);
}
.pkg-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.pckg {
    /*background: #fff;*/
    /*height: 100%;*/
    /* padding: 2rem 1.5rem 1.5rem; */
    /*position: relative;*/
    /*border-radius: 10px;*/
    /*border: 4px solid #E2E2E2;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*gap: 1.5rem;*/
    /*box-shadow: 0px 0px 20px 5px #0000000D;*/
    
    background: #fff;
    border-radius: 8px;
    height: 100%;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    border-radius: 20px;
    border: 1px solid #E2E2E2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 6px 14px 16px 0px #00000040;
    margin-bottom: 2rem;
}
.pckg .btn-wrap a {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}
.pckg .btn-wrap a.bordered {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
}
.pckg .upper .uspto {
    font-weight: 700;
    font-size: 14.87px;
    color: #666666;
    background: #EDEDED;
    border-radius: 7.17px;
    padding: 12px 20px;
    margin: 0 auto 32px;
    text-align: center;
    display: table;
}
.pckg .btn-wrap .btn-norm {
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover {
    transform: scale(1.03);
}
.pckg .title {
    /*font-size: 30px;*/
    /*line-height: 28px;*/
    /* margin-bottom: 1rem; */
    /*text-align: center;*/
    /*font-weight: 700;*/
    /*border-bottom: 1px solid #000;*/
    /*padding: 24px;*/
    
    font-size: 22px;
    line-height: 28px;
    /*margin-bottom: 1rem;*/
    text-align: center;
    font-weight: 700;
}
.pckg .desc {
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    font-weight: 400;
    color: #00000080;
}

.pckg .include-imgs {
    display: flex;
    gap: 1rem;
}

.pckg .include-imgs div {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    flex-shrink: 0;
    gap: 10px;
    color: #124428;
    font-size: 14px;
    line-height: normal;
}

.pckg .include-imgs div img {
    width: auto !important;
    opacity: .4;
    height: 37px;
    object-fit: contain;
}

.pckg .include-imgs div span:first-child {
    border-radius: 7px;
    border: 1px solid #DEDEDE;
    padding: 10px;
}

.pckg .include-imgs div img {
    filter: brightness(0.5);
    margin: 0 auto;
}

.pckg .include-imgs div.active {
    font-weight: 500;
}

.pckg .include-imgs div.active span:first-child {
    border: 1px solid #000;
}

.pckg .include-imgs div.active img {
    opacity: 1;
    filter: brightness(1);
}

.pckg .upper h2 {
    font-size: 58px;
    margin-bottom: 1rem;
    text-align: center;
    color: crimson;
}
.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;
    /* min-height: 40px; */
    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%; */
}
.pckg .bottom .disclaimer {
    text-align: center;
}
.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: 15px;
    line-height: 20px;
    color: #333;
    position: relative;
    display: flex;
}
.pckg .bottom ul li b {
    font-weight: 600;
    color: #000;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 0.5rem;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f14a";
    font-weight: 800;
    margin-right: 12px;
    font-size: 18px;
    color: #000;
}
.pckg .include-imgs {
    display: flex;
    gap: 1rem;
}
.pckg .include-imgs div {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    flex-shrink: 0;
    gap: 4px;
    color: #757575;
    font-size: 12px;
    line-height: normal;
    background: #a9a9a921;
    border-radius: 7px;
    padding: 10px;
}
.pckg .include-imgs div img {
    width: auto !important;
    opacity: .4;
}
.pckg .include-imgs div span:first-child {
    border-radius: 7px;
    /* border: 1px solid #DEDEDE; */
    padding: 10px;
}
.pckg .include-imgs div img {
    filter: brightness(0.5);
    margin: 0 auto;
}
.pckg .include-imgs div.active {
    font-weight: 500;
    color: #2d2c2c;
}
.pckg .include-imgs div.active span:first-child {
    /* border: 1px solid #3176d3; */
}
.pckg .include-imgs div.active img {
    opacity: 1;
}
span.cust-badge {
    color: #676767;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -20px;
    border-radius: 4px;
    border: 1px solid #DEDEDE;
    background: #FFF;
    padding: 10px 20px;
    width: fit-content;
    text-transform: uppercase;
}
.testimonials-slider .slick-slide {
    padding-top: 25px;
}
.pckg.popular .cust-badge {
    background: #f4faff;
    border-color: #3176d3;
    color: #000 !important;
}
.pckg.popular img {
    opacity: 1 !important;
}
.pckg.pupolar .include-imgs div span {
    border-color: #3176d3 !important;
}
p
.pckg.popular .include-imgs div span {
    border-color: #3176d3;
}
.pckg .bottom ul {
    height: 300px;
    overflow-y: auto;
    margin: 0.5rem 0 1rem;
}
.pckg .bottom p {
    font-weight: 500;
    color: var(--primary);
    line-height: 1.3;
}
.services-included h4 {
    font-size: 17.6px;
    text-decoration: underline;
}

.services-included ul li {
    color: #333333;
    font-size: 15px;
    line-height: 24px;
}

.services-included ul {
    margin: 15px 0 0;
}

.pckg .upper {
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid #000;
}

.pckg .bottom {
    padding: 0rem 1.5rem 1.5rem;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 50px;
    line-height: 48px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: #000;
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 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: 15px 52px;
    background: var(--primary);
    color: #333333;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 500;
    border: 2px solid var(--primary);
    transition: .5s ease;
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* ---------------------------footer------------------------------- */
footer {
    background: #202124;
    padding: 30px 0;
}
.copyright {
    text-align: center;
}
.copyright p,.copyright a {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0 8px;
}
.copyright .text-small {
    font-size: 13px;
    font-weight: 300;
    line-height: 17px;
    margin-top: 20px;
}
/* ----------------------------------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;
    color: #000;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
    color: #000;
}
/* 404 */

/* terms */
.terms .roman {
    list-style: upper-roman;
  }
  .terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
  }
  .terms ul li {
    margin-bottom: 0rem;
  }
  .terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
  }
  .terms h4 {
    font-size: 26px;
    margin: 2rem 0 1rem;
  }
  .terms h3 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
  .terms p {
    margin-bottom: 1rem;
  }
  ul.ul-list {
    list-style: disc;
    margin-left: 24px;
  }
  section.sec-3, section.sec-5, section.sec-7, section#pricing {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section.sec-10 {
    padding: 4rem 0 0;
}
.form-image {
    margin-top: 3rem;
}
  /* terms */
  
.show-mobile {
    display: none !important;
}

@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    ul.menu.btns li {
        border-bottom: 0;
        margin-bottom: 8px;
    }
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        height: 100dvh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li > a {
        color: #fff;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    ul.trusted-companies {
        gap: 2rem;
    }
    .sec-heading h2 {
        font-size: 42px;
    }
    .sec-heading h2 span {
        font-size: 42px;
    }
    .newcountrycode .countrycode {
        width: 30px;
    }
    .newcountrycode select {
        width: 48px;
    }
    .ban-form input {
        font-size: 13px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .con {
        height: 563px;
    }
    .top-image {
        display: none;
    }
    section.sec-4:before,  section.sec-4:after {
        display: none;
    }
    .choose-us-card h3 {
        font-size: 20px;
        padding: 12px 0;
    }
    .choose-us-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .testi-slide {
        padding: 14px;
    }
    .testi-slide p {
        font-size: 14px;
    }
    .pckg {
        gap: 0;
    }

}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
.recommended-seal {
    top: 0rem;
    right: 1rem;
    max-width: 120px;
}
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
/* Styles */
}
/* iPads (landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {
/* Styles */

    br {
        display: none;
    }
    .package-card h2 br {
        display: block;
    }
    ul.trusted-companies {
        gap: 2rem;
    }
    .sec-heading h2 {
        font-size: 42px;
    }
    .sec-heading h2 span {
        font-size: 42px;
    }
    .newcountrycode .countrycode {
        width: 30px;
    }
    .newcountrycode select {
        width: 48px;
    }
    .ban-form input {
        font-size: 13px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .con {
        height: 563px;
    }
    .top-image {
        display: none;
    }
    section.sec-4:before,  section.sec-4:after {
        display: none;
    }
    .choose-us-card h3 {
        font-size: 20px;
        padding: 12px 0;
    }
    .choose-us-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .testi-slide {
        padding: 14px;
    }
    .testi-slide p {
        font-size: 14px;
    }
    .pckg {
        gap: 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: 100px 0 20px;
    }
    .popup-image {
        display: none;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 30px;
        line-height: 37px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    ul.banner-list {
        display: block;
        margin: 16px 0;
    }
    ul.banner-list li {
        font-size: 16px;
        font-weight: 500;
        line-height: 25px;
    }
    ul.trusted-companies {
        grid-template-columns: repeat(7, 1fr);
        gap: 1rem;
    }
    section {
        padding: 2rem 0;
    }
    .sec-heading h2 span {
        font-size: 24px;
    }
    .form-list > div {
        width: 100%;
    }
    .form-list {
        flex-direction: column;
    }
    .bglight {
        padding: 18px;
    }
    .swiper {
        width: 30vw;
        left: calc(50% - 16vw);
    }
    .con {
        height: 518px;
    }
    .bt-group {
        opacity: 1;
        bottom: 90px;
    }
    .sec-heading small {
        font-size: 18.2px;
        line-height: 24px;
    }
    br {
        display: none;
    }
    .process-card {
        height: auto;
        margin-bottom: 1rem;
        padding: 26px;
    }
    .benefit-card {
        height: auto;
        margin-bottom: 1rem;
        padding: 30px;
    }
    .top-image {
        display: none;
    }
    section.sec-4:before, section.sec-4:after{
        display: none;
    }
    .line {
        width: auto;
        margin: 16px auto;
    }
    .sec-4 .sec-heading {
        margin-bottom: 20px;
        margin-top: 2rem;
    }
    ul.wrong-list li, ul.right-list li {
        font-size: 14px;
        line-height: 30px;
    }
    .choose-us-card {
        height: auto;
        margin-bottom: 1rem;
    }
    .choose-us-card p {
        font-size: 16px;
    }
    .gurantee-bg {
        padding: 35px 18px;
        text-align: center;
    }
    .accordion-list li {
        padding: 20px 12px 20px 12px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        font-size: 16px;
        line-height: 22px;
    }
    section.sec-10 {
        padding: 0rem 0 0;
    }
    .copyright p, .copyright a {
        font-weight: 400;
        line-height: 22px;
    }
    .terms p {
        font-size: 16px;
    }
    .terms ul li {
        font-size: 16px;
    }
    .sec-3 .btn-wrap .theme-btn, .sec-3 .btn-wrap .theme-btn.bordered {
        padding: 15px 40px;
    }
    .payment-option p {
        justify-content: center;
    }
    ul#counter li {
        padding: 1rem;
    }
    ul#counter li .counter>div {
        font-size: 24px;
    }
    ul#counter li .counter span.text {
        font-size: 14px;
        margin-top: 10px;
    }

}

/* iPhone 6-8 Plus */
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : landscape) {
/* Styles */
}

/* iPhone 6-8  */
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : landscape) {
/* Styles */
}

/* Android (Pixel 2) */
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : landscape) {
/* Styles */
}

/* Iphone X */
@media only screen
and (min-width : 375px)
and (max-width : 734px)
and (orientation : portrait) {

}
@media only screen
and (min-width : 320px)
and (max-width : 767px) {
    .hide-mobile {
        display: none !important;
    }
    .show-mobile {
        display: block !important;
    }
    .recommended-seal {
        top: 0rem;
        right: 0rem;
        max-width: 75px;
    }
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 100px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 30px;
        line-height: 37px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    ul.banner-list {
        display: block;
        margin: 16px 0;
        list-style: none;
    }
    ul.banner-list li {
        font-size: 14px;
        font-weight: 500;
        line-height: 25px;
    }
    ul.trusted-companies {
        grid-template-columns: repeat(4, 1fr);
        gap: 0 1rem;
        align-items: baseline;
    }
    section {
        padding: 2rem 0;
    }
    .sec-heading h2 span {
        font-size: 24px;
    }
    .form-list > div {
        width: 100%;
    }
    .form-list {
        flex-direction: column;
    }
    .bglight {
        padding: 18px;
    }
    .swiper {
        width: 46vw;
        left: calc(50% - 22vw);
    }
    .con {
        height: 390px;
    }
    .bt-group {
        padding: 20px;
        width: auto;
        opacity: 1;
        bottom: 192px;
    }
    .sec-heading small {
        font-size: 18.2px;
        line-height: 24px;
    }
    br {
        display: none;
    }
    .process-card {
        height: auto;
        margin-bottom: 1rem;
        padding: 26px;
    }
    .benefit-card {
        height: auto;
        margin-bottom: 1rem;
        padding: 30px;
    }
    .top-image {
        display: none;
    }
    section.sec-4:before, section.sec-4:after{
        display: none;
    }
    .line {
        width: auto;
        margin: 16px auto;
    }
    .sec-4 .sec-heading {
        margin-bottom: 8px;
        margin-top: 2rem;
    }
    ul.wrong-list li, ul.right-list li {
        font-size: 14px;
        line-height: 30px;
    }
    .choose-us-card {
        height: auto;
        margin-bottom: 1rem;
    }
    .choose-us-card p {
        font-size: 14px;
    }
    .gurantee-bg {
        padding: 35px 18px;
        text-align: center;
    }
    ul#counter {
        flex-direction: column;
    }
    .accordion-list li {
        padding: 20px 12px 20px 12px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-10 {
        padding: 0rem 0 0;
    }
    .copyright p, .copyright a {
        font-weight: 400;
        line-height: 22px;
    }
    .terms p {
        font-size: 14px;
    }
    .terms ul li {
        font-size: 14px;
    }
    .mmpopup {
        flex-direction: column;
    }
    .popup-image {
        display: none;
    }
    .call-btn {
        display: none;
    }
    .popupmain-new .mmpopup .popup-content {
        max-width: 100%;
    }
    .popupmain-new .mmpopup {
        background: #fff;
    }

}