/*Main Css */
:root {
    --primary: #F2BF43;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Poppins" , sans-serif;
    --font-accent: "Lato" , sans-serif;
    --font-body: "Lato" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
}

::selection {
    background: #F2BF43;
    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: #F2BF43;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background: #000;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 3px;
    width: 42px;
    border-radius: 0;
    padding: 0px;
    background: #dddddd8c;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: var(--primary);
    width: 42px;
}

.swiper {
  width: 465px;
  height: 580px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*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; */
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
    top: 0;
}
.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}
.menu > li > a {
    display: block;
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px; /* 100% */
    text-transform: uppercase;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    color: #000 !important;
    line-height: 20.8px !important; /* 160% */
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 100px 0 80px;
}
h1.banner-heading {
    /* margin-bottom: 2rem; */
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 60px;
    line-height: 1.2; /* 111.167% */
    letter-spacing: -1px;
}
span.sub-heading {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-family: "Lato";
    font-size: 18px;
    font-weight: 700;
    line-height: 22.5px; /* 125% */
    padding: 21px 0;
}
p.banner-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 2rem;
    color: #5F5F5F;
}
.banner-content ul li {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-family: "Lato";
    font-size: 14px;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
}
.banner-content ul {
    list-style: disc;
    margin-left: 18px;
    margin-bottom: 21px;
}
.banner-img {
    text-align: end;
}
.trusted-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}
.trusted-slider.slick-initialized.slick-slider div {
    display: flex !important;
    align-items: center !important;
}
.sec-1 {
    background: #000;
    padding: 16.98px 17.02px;
}
.main-header {
    padding-top: 36px;
}
.visa-text {
    margin: 27px 0;
}
.top-four-cards h3 {
    color: #000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 19px;
    font-weight: 700;
    line-height: 30px; /* 157.895% */
    padding: 31px 0 20px;
}
.top-four-cards p {
    color: #000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 16px;
    line-height: 24px; /* 150% */
}
section.sec-2 {
    background: #fff;
    padding: 99px 0;
}
.top-four-cards {
    background: #fff;
    border: 1px solid #fff;
    padding: 5px;
}
section.sec-3 {
    padding: 81px 0;
}
.step-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    height: 100%;
}
.step-card span {
    border-radius: 999px;
    background: #F2BF43;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 700;
     /* 277.778% */
}
.step-card h3 {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 19px;
     /* 136.842% */
    text-transform: uppercase;
    padding: 20px 0 10px;
}
.step-card p {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 16px;
    line-height: 24px; /* 150% */
}
.step-video-wrapper {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    padding: 20px;
    margin-top: 32px;
}
.sec-heading h3 {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 38px;
    line-height: 43.7px; /* 115% */
    letter-spacing: -1px;
    padding-bottom: 17px;
}
.three-steps-video {
    border-radius: 16px;
}
.review-card {
    padding-bottom: 20px;
}
.review-slider.slick-initialized.slick-slider.slick-dotted {
    margin-top: 36px;
}
section.sec-4 {
    background: #fff;
    padding: 97px 0 79px;
}
.sec-4 .sec-heading p {
    color: #000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 18px;
    font-weight: 700;
    line-height: 36px; /* 200% */
}
.visa-text2 p {
    color: #000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 14px;
    line-height: 26px; /* 185.714% */
}
.visa-text2 {
    margin-top: 24px;
}
.video-box {
  position: relative;
  width: 100%;
  height: auto;      
}
.video-box video {
  width: 100%;
  height: 410px;   
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 22px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.play-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}
.review-video {
    border-radius: 0px 0px 30px 30px;
    background: #0C0C0C;
    border-radius: 30px;
}
.review-video span.name {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px; /* 130% */
    display: block;
}
.review-video span.stars i {
    color: var(--primary);
}
.review-video p {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 16px;
    line-height: 22px; /* 137.5% */
    padding-top: 16px;
}
.padding {
    padding: 30px;
}
.bordertop {
    border-top: 1px solid #ffffff26;
    padding-bottom: 84px;
    padding-top: 75px;
}
.mobile-image {
    text-align: end;
}
.benefits-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    height: 100%;
    padding: 15px 10px;
    text-align: center;
}
.benefits-card h3 {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 19px;
    line-height: 26px; /* 136.842% */
    text-transform: uppercase;
    padding: 20px 0 10px;
}
.benefits-card p {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 16px;
    line-height: 24px; /* 150% */
}
/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}
ul#counter li .counter>div {
    margin-bottom: 0rem;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-family: Poppins;
    font-size: 48px;
    font-weight: 700;
    line-height: 32px; /* 100% */
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 0rem;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ffffff4a;
}
ul#counter li .counter span.text {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-family: "Lato";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: 2px;
    text-transform: uppercase;
}
ul#counter li.last {
    border-right: 0;
}
.goto.animated {
    border-top: 1px solid #ffffff4a;
    border-bottom: 1px solid #ffffff4a;
    padding: 40px 0;
}
/* -------------------------counter CSS------------------------  */

.sec-4 .sec-heading p.text2 {
    color: #415B72;
    font-size: 14px;
    line-height: 26px; /* 185.714% */
}
section.sec-6 {
    padding: 102px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.port-card h3 {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 24px;
    line-height: 28.8px; /* 120% */
    padding-top: 30px;
}
.port-card {
    margin-bottom: 54px;
}
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
ul.overview-nav.d2 a {
    padding: 14px 20px;
    border: 1px solid #000000;
    border-radius: 60px;
    background: #F4F6FA;
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
ul.overview-nav.d2 li.active a {
    background: var(--primary);
    color: #000;
    border-color: var(--primary) !important;
}
.email-field {
    background: #dfe5eb;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 75%;
    margin: 0 auto;
}
.email-field input[type="text"] {
    cursor: pointer;
    background: #fff;
    border: 0;
    font-size: 14px;
    width: 100%;
    padding: 10px;
    height: 46px;
    border-radius: 6px;
}
.email-field button {
    background: #1a6aff;
    border-radius: 50px;
    width: 40%;
    border: 1px solid #1a6aff;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    height: 46px;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 10px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #000000;
    background: #000000;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 19px;
    font-weight: 700;
    line-height: 30px; /* 157.895% */
    text-transform: uppercase;
}
ul.accordion-list li h3:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF ;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f068";
}
.answer p {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 16px;
    font-weight: 400;
    line-height: 32px; /* 200% */
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
.accordion-list>li.active{
    border-bottom: 2px solid #F2BF43;
}
/* Accordian */

/* packages */
.pckg-sec{
    background: #f5f5f5;
}
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
    margin-top: 2rem;
}
.pkg-list .g-2 {
    grid-template-columns: repeat(2, 1fr);
}
.pkg-list .d2 .pckg {
    border: 1px solid #E5E7EB;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.pkg-list .d2 .pckg .upper {
    text-align: center;
}
.pkg-list .d2 .pckg .upper .price {
    justify-content: center;
}
.pkg-list .d2 .pckg .upper .title {
    font-size: 24px;
    line-height: 24px;
}
.pkg-list .d2 .pckg .upper .price .amount {
    font-weight: 800;
    font-size: 70px;
    line-height: 85px;
}
.pkg-list .d2 .pckg .bottom p {
    font-size: 18px;
    line-height: 26px;
    color: #6B7280;
}
.pckg.d2{
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.pckg.d2 .upper .title {
    font-size: 24px;
    line-height: 24px;
}
.pckg.d2 .upper {
    text-align: center;
}
.pckg.d2 .upper .price {
    justify-content: center;
}
.pckg.d2 .upper .price .amount {
    font-size: 70px;
    line-height: 85px;
}
.pckg.d2 .bottom .hdng {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #525AEC;
    margin-bottom: 1rem;
}
.pckg.d2 .bottom p {
    color: #6B7280;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 1rem;
}
.pckg {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(217, 217, 217, 0.40);
    background: #0C0C0C;
    box-shadow: 0px 12px 35.7px 0px rgba(72, 55, 255, 0.02);
}
.pckg .btn-wrap a{
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper, .pckg .bottom {
    /* padding: 1.5rem; */
}
.pckg .upper .title {
    font-size: 24px;
    line-height: normal;
    margin-bottom: 5px;
    color: #F4F6FA;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    margin-bottom: 25px;
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 18px;
    line-height: 24px; /* 133.333% */
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
}
.pckg .upper .price .amount {
    font-weight: 600;
    font-size: 44px;
    line-height: normal;
    color: #fff;
}
.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #5b5b5b;
}
.pckg .upper {
    /* border-bottom: 1px solid #E5E7EB; */
}
.pckg .bottom .includes {
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
.pckg .bottom ul li {
   position: relative;
   display: flex;
   color: rgba(255, 255, 255, 0.70);
   font-family: "Lato";
   font-size: 16px;
   line-height: 22px; /* 137.5% */
   letter-spacing: -0.32px;
}
.pckg .bottom ul {
    margin: 1rem 0 3rem;
    overflow-y: auto;
    /* max-height: 179px; */
    padding-right: 10px;
    height: 254px;
    overflow-y: scroll;
}
.bottom span {
   color: #FFF;
   font-family: Poppins;
   font-size: 20px;
   font-weight: 700;
   line-height: normal;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f058";
    font-weight: 800;
    color: var(--primary);
    margin-right: 12px;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
span.tag {
    background: #FBBF24;
    color: #0B0B0B;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 32px;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52%;
}
.pckg:hover {
    border: 1px solid #f2bf43;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    color: #000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 58px;
    line-height: 69px; /* 118.966% */
    letter-spacing: -1px;
    padding-bottom: 20px;
}
.sec-heading h4 {
    color: #000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 38px;
    line-height: 1.2; /* 118.966% */
    letter-spacing: -1px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 16px;
    line-height: 24px; /* 150% */
}
.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;
}
.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 20px;
    background: var(--primary);
    border-radius: 8px;
    border: 1px solid var(--primary);
    transition: .5s ease;
    color: #000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px; /* 185.714% */
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}
.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}
.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}
.newcountrycode .phone-field {
    width: 100%;
}
.newcountrycode input {
    border: 0;
}
/* Country Code */

/* footer */
footer {
    background: #030E1A;
    padding: 1.5rem 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-sec a {
    color: #fff;
}
/* footer */

/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    max-height: 90vh;
  }
  .mmpopup {
    background: url("../images/popup-bg.webp"), linear-gradient(180deg, #000 0%, #002F6D 100%);
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 26px;
  }
  .mmpopup .form-text {
    color: #000;
    font-family: var(--font-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
  }
  .mmpopup .form-text a {
    color: #659640;
    font-weight: 700;
  }
  .mmpopup .form-text a:hover {
    color: var(--secondary);
  }
  .mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
  }
  .closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #659640;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
   border: 4px solid var(--primary);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    background: var(--primary);
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.form-label {
    margin-bottom: .5rem;
    color: #000;
    font-weight: 400;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    background: #212121;
    padding: 60px 0 30px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-top: 1px solid #005175; */
    padding: 20px 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 14px;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    color: #FFF;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    font-size: 14px;
    line-height: 22.4px; /* 160% */
    padding: 20px 0;
}
.footer-hdng h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}
.f-menu li a {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hours p {
    color: #fff;
    font-size: 16px;
}
.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    background: #212121;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */

.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 1rem 0;
}
.terms p {
    margin-bottom: 1rem;
    color: #ffffffe0;
}
ul.terms-list {
    list-style: disc;
    margin-left: 24px;
}
ul.terms-list li {
    color: #ffffffe0;
    line-height: 24px;
    margin-bottom: 0;
    font-size: 16px;
}
/* terms */

.portfolio-page-nav {
  background: #000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999999;
}
.portfolio-page-nav .logo {
  max-width: 240px;
  /* margin: auto; */
}
.portfolio-page-nav .back-btn {
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.portfolio-viewframe {
  width: 100vw;
  min-height: 100dvh;
}













@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li > a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    .sec-heading h2 {
        font-size: 44px;
    }
    .sec-heading h3 {
        font-size: 32px;
        line-height: 38.7px;
    }
    .slick-dots {
        padding: 0px 0 0;
    }
    ul#counter li .counter>div {
        font-size: 36px;
    }

}

@media (max-width : 1199px) {
    h1.banner-heading {
        font-size: 40px;
        line-height: 1.2;
    }
    span.sub-heading {
        font-size: 14px;
        line-height: 22.5px;
        padding: 16px 0;
    }
    .banner-content {
        padding: 80px 0 80px;
    }
    .btn-wrap .theme-btn {
        padding: 10px 16px;
    }
    .top-four-cards h3 {
        font-size: 18px;
        line-height: 22px;
        padding: 14px 0 8px;
    }
    .top-four-cards p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    .sec-heading h2 {
        font-size: 36px;
        line-height: 40px;
    }
    .sec-heading h3 {
        font-size: 32px;
       line-height: 48px;
        padding-bottom: 17px;
    }
    .slick-dots {
        padding: 0px 0 0;
    }
    ul#counter li .counter>div {
        font-size: 36px;
    }
    .port-card h3 {
        font-size: 20px;
        line-height: 28.8px;
        padding-top: 14px;
    }
    .port-card {
        margin-bottom: 30px;
    }
    .pkg-list {
        gap: 1rem;
        margin-top: 0rem;
    }
    .pckg .upper .title {
        font-size: 22px;
    }
    .pckg .upper p {
        font-size: 13px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 18px;
    }
    .copyright p, .copyright a {
        font-size: 12px;
    }

}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 14px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

@media (max-width : 992px) {
    .pkg-list {
        grid-template-columns: repeat(2, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        /* margin-bottom: 1rem; */
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        /* margin-bottom: 1rem; */
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 25px;
    }
    .btn-wrap {
        /* flex-direction: column; */
        /* margin-bottom: 1rem; */
        /* align-items: flex-start; */
        /* gap: 0; */
        flex-wrap: wrap;
    }
    .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: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        /* flex-direction: column; */
        gap: 12px;
    }
    .visa-text {
        /* text-align: center; */
        margin: 15px 0;
    }
    .banner-content ul li {
        font-size: 12px;
    }
    .sec-1 {
        padding: 4.98px 17.02px;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    .top-four-cards h3 {
        font-size: 18px;
        padding: 14px 0 14px;
        line-height: 20px;
    }
    .top-four-cards {
        /* margin-bottom: 2rem; */
    }
    section.sec-3 {
        padding: 46px 0;
    }
    .sec-heading {
        margin-bottom: 1rem;
    }
    .step-card {
        margin-bottom: 1rem;
        height: 100%;
    }
    .step-card h3 {
        font-size: 18px;
        padding: 6px 0 6px;
    }
    .sec-heading h3 {
        font-size: 24px;
        line-height: 30.7px;
        padding-bottom: 14px;
        margin-top: 18px;
    }
    .step-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .slick-dots li button {
        width: 12px;
    }
    .slick-dots {
        padding: 6px 0 0;
    }
    section.sec-4 {
        padding: 50px 0 50px;
    }
    .sec-4 .sec-heading p {
        font-size: 16px;
        line-height: 24px;
    }
    .padding {
        padding: 12px;
    }
    .review-video {
        margin-top: 1.5rem;
    }
    .review-video p {
        font-size: 14px;
        line-height: 22px;
    }
    .bordertop {
        padding-bottom: 40px;
        padding-top: 38px;
    }
    .benefits-card {
        height: 100%;
        margin-bottom: 1rem;
    }
    ul#counter {
        /* flex-direction: column; */
        gap: 1rem;
    }
    ul#counter li .counter>div {
        font-size: 30px;
    }
    ul#counter li .counter span.text {
        font-size: 12px;
    }
    .port-card h3 {
        font-size: 14px;
        padding-top: 8px;
    }
    .port-card {
        margin-bottom: 16px;
    }
    ul.overview-nav.d2 a {
        padding: 10px 14px;
        font-size: 12px;
    }
    ul.overview-nav.d2 {
        gap: 8px;
        margin-bottom: 0px;
    }
    .pckg .upper p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 22px;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
        padding-top: 14px;
    }
    .accordion-list li {
        margin-bottom: 0.5rem;
    }
    footer {
        padding: 28px 0 0;
    }
    .footer-sec p {
        font-size: 12px;
        line-height: 20.4px;
        padding: 12px 0;
    }
    .copyright p, .copyright a {
        font-size: 12px;
        text-align: center;
        line-height: 20px;
    }
    .copyright p, .copyright a {
        font-size: 12px;
    }
    .terms p {
        font-size: 12px;
        line-height: 20px;
    }
    ul.terms-list li {
        line-height: 20px;
        margin-bottom: 0;
        font-size: 12px;
    }
    .top-four-cards p {
        font-size: 14px;
        line-height: 24px;
    }
    .benefits-card h3 {
        font-size: 16px;
        line-height: 20px;
        padding: 12px 0 10px;
    }

}

@media only screen and (min-width : 768px) and (max-width : 991px) {
    .banner-img {
        display: none;
    }
    .step-card {
        margin-bottom: 1rem;
        height: auto;
    }
    .mobile-image {
        display: none;
    }
    ul.overview-nav.d2 {
        margin-bottom: 30px;
    }


}


@media only screen and (min-width : 280px) and (max-width : 767px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        /* margin-bottom: 1rem; */
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        /* margin-bottom: 1rem; */
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 25px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    .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: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .visa-text {
        text-align: center;
        margin: 15px 0;
    }
    .banner-content ul li {
        font-size: 12px;
    }
    .sec-1 {
        padding: 4.98px 17.02px;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    .top-four-cards h3 {
        font-size: 18px;
        padding: 10px 0 10px;
    }
    .top-four-cards {
        margin-bottom: 2rem;
    }
    section.sec-3 {
        padding: 46px 0;
    }
    .sec-heading {
        margin-bottom: 1rem;
    }
    .step-card {
        margin-bottom: 1rem;
        height: auto;
    }
    .step-card h3 {
        font-size: 18px;
        padding: 6px 0 6px;
    }
    .sec-heading h3 {
        font-size: 24px;
        line-height: 30.7px;
        padding-bottom: 14px;
        margin-top: 18px;
    }
    .step-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .slick-dots li button {
        width: 12px;
    }
    .slick-dots {
        padding: 6px 0 0;
    }
    section.sec-4 {
        padding: 50px 0 50px;
    }
    .sec-4 .sec-heading p {
        font-size: 16px;
        line-height: 24px;
    }
    .padding {
        padding: 12px;
    }
    .review-video {
        margin-top: 1.5rem;
    }
    .review-video p {
        font-size: 14px;
        line-height: 22px;
    }
    .bordertop {
        padding-bottom: 40px;
        padding-top: 38px;
    }
    .benefits-card {
        height: auto;
        margin-bottom: 1rem;
    }
    ul#counter {
        flex-direction: column;
        gap: 2rem;
    }
    ul#counter li .counter>div {
        font-size: 30px;
    }
    ul#counter li .counter span.text {
        font-size: 12px;
    }
    .port-card h3 {
        font-size: 14px;
        padding-top: 8px;
    }
    .port-card {
        margin-bottom: 16px;
    }
    ul.overview-nav.d2 a {
        padding: 10px 14px;
        font-size: 12px;
    }
    ul.overview-nav.d2 {
        gap: 8px;
        margin-bottom: 0px;
    }
    .pckg .upper p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 22px;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
        padding-top: 14px;
    }
    .accordion-list li {
        margin-bottom: 0.5rem;
    }
    footer {
        padding: 28px 0 0;
    }
    .footer-sec p {
        font-size: 12px;
        line-height: 20.4px;
        padding: 12px 0;
    }
    .copyright p, .copyright a {
        font-size: 12px;
        text-align: center;
        line-height: 20px;
    }
    .copyright p, .copyright a {
        font-size: 10px;
    }
    .terms p {
        font-size: 12px;
        line-height: 20px;
    }
    ul.terms-list li {
        line-height: 20px;
        margin-bottom: 0;
        font-size: 12px;
    }
    ul#counter li {
        border-right: 0;
    }
    .sec-5 .sec-heading {
        text-align: center;
    }
    .mmpopup .popup-content {
        padding: 46px 20px 20px;
    }
.mmpopup .centercont h3 span {
    font-size: 28px;
    line-height: 30px;
}




}