/*Main Css */
:root {
    --primary: #248C69;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Montserrat", sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
   
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: var(--primary);
    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: var(--primary);
}
.container{max-width: 1240px;}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 20px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    background: #FAFAFA;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #C1C1C1;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #1F1F1F;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: var(--icon);
    color: #656565;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
}
.answer p {
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}
.accordion-list li .answer {
    padding-top: 1rem;
    border-top: 1px solid #C1C1C1;
    margin-top: 1rem;
}
/* Accordian */

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: var(--font-heading);
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/
.top-header {
    padding: 15px 0;
    background-color: var(--primary);
}
.header-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}
.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--white);
    font-size: 14px;
    color: #0B0B0B;
}
.white {
    color: var(--white) !important;
}
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: sticky;
    background: white;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: -4px 4px 10px 0px #A9A9A940;
}
.main-header {
    padding: 20px 0;
    position: relative;
}
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;
}
.phone-wrap {
    padding: 16px 20px;
    background: #202040;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    border: 2px solid #202040;
    transition: .5s ease;
    box-shadow: 0px 1px 2px 0px #0000000D;
}
.phone-wrap:hover{
    color: var(--white);
}
.phone-wrap i {
    padding-right: 5px;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
    width: 200px;
}

/* 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: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--black);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 400 !important;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .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: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.mainBanner.sm{
    min-height: 300px;
    background: radial-gradient(70.71% 70.71% at 50% 50%, #4B494B 0%, #1C1C1C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-content {
    padding: 50px 0;
}
.mainBanner.thanks {
    background: radial-gradient(70.71% 70.71% at 50% 50%, #4B494B 0%, #1C1C1C 100%);
    padding: 40px 0;
}
.banner-content.has-padding{
    padding: 50px 0 ;

}
.home.banner-img {
    width: 130%;
    margin-bottom: -3px;
} 
.banner-img {
    margin-bottom: -3px;
    padding-top: 30px;
} 

.gradient-img {
    background-image: url(../images/gradient-img.webp);
    background-size: cover;
    background-position: center;
}
h1.banner-heading {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.banner-heading span {
    color: var(--primary);
}
.mainBanner.thanks .banner-heading{
    font-weight: 600;
    font-size: max(32px, min(4vw, 119px));
    line-height: max(42px, min(5vw, 120px));
    color: white;
}
.mainBanner.sm .banner-heading{
    font-weight: 600;
    color: white;
}
.mainBanner.thanks h3{
    font-weight: 600;
    font-size: max(18px, min(5vw, 22px));
    line-height: max(26px, min(5vw, 30px));
    color: white;
    margin-bottom: 1rem;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}
p.banner-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #00001F;
    font-weight: 400;
}
.banner-list li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #202040;
    padding: 7px 0;
    padding-left: 20px;
}
.banner-list.white li {
    color: var(--white);
}
.banner-list li::before {
    content: "\f058";
    font-family: var(--icon);
    color: var(--primary);
    font-size: 14px;
    position: absolute;
    top: 8px;
    left: 0;
    font-weight: 700;
}
.mainBanner.thanks .banner-text{
    font-size: 16px;
    line-height: 25px;
    color: white;
}
.mainBanner.thanks img{
    margin-bottom: 1rem;
}
.partners-wrap {
    background: #000000;
    padding: 1rem 0;
}

.partners-wrap .hdng {
    text-align: center;
    color: white;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 600;
}
.partners {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* 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: 530px;
    background: #fff;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width:97%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .poptable {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 1000px;
    background: #fff;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width:97%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .mmpopup {
    text-align: center;
    background: #f8f8f8;
    padding: 45px 25px 25px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
  }
  .mmpopup .fld-input {
    height: 56px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 0;
    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 h4 span small {
    font-size: 16px;
  }
  .mmpopup .centercont h4 span span {
    display: none;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 16px;
    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: #fff;
    /* 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: var(--primary);
  }
  .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: 36px;
    line-height: 120%;
    color: #ffffff;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: beige;
    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-radius: 5px;
   background-color: var(--primary);
   width: 100%;
   color: white;
   font-size: 18px;
   font-weight: 600;
   letter-spacing: 0.2px;
   text-transform: uppercase;
   cursor: poRoboto;
   transition: 0.5s;
   font-family:
   'Inter';
   height: 59px;
   cursor: pointer;
   border: 0;
  }
  .fld-btn button i {
    padding-left: 12px;
  }
  .fld-btn button:hover {
   transform:scale(1.03);
  }
/* popup */

/* packages */
.pckg-sec{
    background: #EEF2FF;
}
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
    margin-top: 50px;
}
.pkg-list.g2 {
    grid-template-columns: repeat(2, 1fr);
}
 .pckg {
    text-align: center;
    align-items: center;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    background: #fff;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    border-radius: 22px;
    border: 1px solid transparent;
    height: 100%;
    padding: 42px 26px 20px;
}
.pckg .btn-wrap a{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}
.pckg .btn-wrap .bordered {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper .title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 600;
    color: #101828;
}
.pckg .upper .starting-in {
    font-size: 16px;
    color: #292524;
    display: block;
    margin-bottom: 10px;
}
.pckg .upper > small {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    padding: 10px;
    border-radius: 8px;
    background-color: #F2F4F7;
    display: inline-block;
} 
.pckg .upper >.special {
    background-color: #ADFFE3;
}
.pckg .upper p {
    font-size: 16px;
    line-height: 20px;
    color: #444444;
    margin-bottom: 1rem;
 
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.pckg .upper .price .amount {
    font-weight: 700;
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 10px;
}
.pckg .upper .price .amount small {
    font-size: 14px;
}
.pckg .upper .price .uspto {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}
.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: 14px;
    line-height: 1.2;
    color: #57534E;
    position: relative;
    display: flex;
    text-align: left;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .bottom {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.pckg .bottom .btn-wrap {
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 30px;
}
.pckg .bottom ul li:has(span)::before {
    content: none;
}
.pckg .bottom ul li:has(span) {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}
.bottom ul {
    margin: 1rem 0 1rem;
    padding-right: 10px;
    height: 200px;
    overflow-y: auto;
}
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 var(--primary);
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: var(--primary);
    margin-right: 12px;
}
/*------add-css------*/
.pckg.popular {
    background: var(--primary);
    /* transform: scale(1.03); */
}
.pckg.popular .title {
    color: #fff;
}
.pckg.popular p {
    color: #fff;
    line-height: 1.1;
}
.pckg.popular .uspto {
    color: #fff !important;
}
.pckg.popular .bottom span {
    color: #fff;
}
.pckg.popular .bottom ul li {
    color: #fff;
}
.pckg.popular .btn-wrap .theme-btn {
    background: #fbbf24 !important;
    color: #000 !important;
    padding: 16px 24px;
}
.pckg .btn-wrap .theme-btn {
    padding: 16px 24px;
}
.pckg.popular .amount {
    color: #fbbf24 !important;
}
.pckg.popular .bottom ul li::before {
    color: #fbbf24;
}
.pckg.popular .starting-in {
    color: #fff;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;
    
}
.sec-heading h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
    gap: 0 0.5rem;
}

.sec-heading h5 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    color: #555555;
}
.sec-heading h2 span {
    color: var(--primary) !important;
    display: inline;
}
.sec-heading h2 .light {
    font-weight: 400;
    display: contents;
}
.sec-heading.white *{
    color:white
}
.sec-heading p {
    font-size: 16px;
    line-height: 1.5;
    color: #0B0B0B;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
.sec-heading p a {
    text-decoration: underline;
    color: #000;
    font-weight: 600;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
    scroll-margin-top: 100px;
}
.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: 18px 30px;
    background: #000000;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    font-weight: var(--font-medium);
    border: 1px solid #000000;
    transition: .5s ease;
    box-shadow: 0px 1px 2px 0px #0000000D;
}
.btn-wrap .theme-btn.btn-2 {
    background-color: transparent;
    border: 1px solid #B9B9B9;
    color: #000;
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
.theme-btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #0B0B0B;
}
.theme-btn.bordered.white {
    color: white;
    border-color: var(--primary);
}
/* 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: #090D13;
    padding: 3rem 0 1.5rem;
}
.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding-top: 1rem;
    border-top: 1px solid #DCDCDC;
}
.copyright p {font-size: 14px;color: #fff;line-height: 24px;}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
.copyright a {
    color: #138F82;
    font-weight: 600;
}
/* 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;
}
.thankyou-content {
    padding: 50px 30px;
    background-color: #2C826594;
    border-radius: 6px;
    text-align: center;
}
.thankyou-content img {
    margin: 0 auto;
}
/* 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: 22px;
    margin: 1rem 0;
    font-weight: 600;
}
.terms p {
    line-height: 22px;
    margin-bottom: 2rem;
    color: #555555;
}
.navbar-dnone ul.menu {
    display: none;
}
/* terms */

.icon-card {
    border: 0.7px solid #E1E1E1;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    height: 100%;
    background-color: white;
}
.steps-card {
    padding: 30px 50px;
    position: relative;
    z-index: 1;
}
.steps-card h3 {
    font-size: 22px !important;
}
.step-box h2 {
    font-size: 60px;
    font-weight: 600;
    color: white;
    -webkit-text-stroke: 3px #8EB6A8;
    paint-order: stroke fill;
    text-align: center;
    margin-bottom: -12px;
}
.icon-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.icon-card p {
    font-size: 14px;
    line-height: 22px;
}

.icon-card img {
    max-height: 100px;
}
.icon-card.d2 {
    box-shadow: 1px 5px 2px 0px #E4E4E463;
    border-color: #D3D3D3;
}

.icon-card.d2 h3 {
    font-size: 26px;
    font-weight: 600;
}
.bg-light{
    background: #FAFAFA !important;
}
.testi-card {
    height: 100%;
    padding: 20px 10px;
    /* margin-bottom: 1rem; */
    text-align: center;
    background: #fff;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    border-radius: 22px;
    border: 1px solid transparent;
}
.testi-card .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
.testi-card .content h3 {
    font-size: 30px;
    font-weight: 500;
}
.testi-card .content p {
    font-size: 14px;
    line-height: 28px;
}
.testi-card .img {
    flex-shrink: 0;
}
.name-detail span {
    height: 50px;
    width: 50px;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.name-detail span.one {
    background: #CF75EF;
}
.name-detail span.two {
    background: #65fd82;
}
.name-detail span.three {
    background: #36acab;
}
.name-detail span.four {
    background: #b49fed;
}
.name-detail span.five {
    background: #846538;
}
.name-detail span.six {
    background: #5e49b4;
}
.name-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.testi-card h5 {
    font-size: 12px;
    font-weight: 300;
    color: #000;
    padding: 15px 0;
}
.testi-card h5 strong {
    font-weight: 500;
}
.testi-card p {
    color: #686868;
    font-size: 14px;
    line-height: 22px;
}
section.cta {
    background-image: url(../images/bg.webp);
    background-size: cover;
    background-position: center;
}
ul.check-list {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 1rem;
    margin-bottom: 30px;
}
ul.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
ul.check-list li .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
ul.check-list li .content .hdng {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}
ul.check-list li .content p {
    line-height: 22px;
}
ul.check-list.single {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}


.leadforms-step-wrapper {
    padding: 0 !important;
}
.leadforms-form-body-wrapper .leadforms-form-body .leadforms-additional-elements {
    margin: 0 auto !important;
}
.leadforms-input-text-inner {
    padding: 9px !important;
}
.leadforms-step-title.css-9ayzsd6sd6 {
    font-size: 40px !important;
    font-family: var(--font-heading);
    font-weight: normal;
}
.leadforms-step-instruction.css-9ayzsd6sd6 {
    font-size: 18px !important;
    margin-bottom: 18px;
}
.leadforms-form-body-wrapper .leadforms-form-body {
    background: #fff;
    border-radius: 20px;
}
.leadforms-form-body-bg-color {
    background: #fff !important;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.leadforms-submit-button, button.leadforms-submit-button, input[type=submit].leadforms-submit-button, button[type=submit].leadforms-submit-button {
    font-size: 18px !important;
}
.leadforms-embd-form {
    margin-top: 10px;
}
.mmpopup .leadforms-form-body-bg-color {
    background: #fff !important;
    border: 0;
}








@media (max-width: 1600px) {
    .home.banner-img {
        width: 115%;
    }
}
@media (max-width: 1400px) {
    .home.banner-img {
        width: 105%;
        margin-bottom: -50px;
    }
}
@media (max-width: 1300px) {
    .home.banner-img {
        width: 100%;
        margin-bottom: -90px;
    }
}

@media (max-width: 1200px) {
    .cta .btn-wrap {
        flex-wrap: wrap;
    }
    .heder-btn {
        margin-right: 60px;
    }
    .menu {
        display: block;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100dvh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    
   
    
    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;
    }
    .mainBanner.has-after::after {
        width: 50%;
    }
    
    .has-after .banner-img img {bottom: 0;right: 10px;}

    .sec-2 .icon-card.steps-card {
        margin-top: 40px;
    }
    h1.banner-heading {
        font-size: 42px;
    }
    .steps-card {
        padding: 30px 25px;
    }
    .sec-heading h2 {
        font-size: 36px;
    }
    span.tag {
        font-size: 16px;
        padding: 10px 28px;
        top: -18px;
    }
    .bottom ul {
        height: 178px;
    }
    .pckg .upper .title {
        font-size: 20px;
    }
    .pckg {
        padding: 32px 16px 18px;
    }


}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}
@media (max-width : 1023px){
    .cta .sec-heading h2 {
        justify-content: center;
    }
    .cta .sec-heading {
        text-align: center;
        margin-bottom: 20px !important;
    }
    .banner-img{
        display: none;
    }
    .mainBanner.has-after::after{
        content: none;
    }
    .mainBanner{
        min-height: auto;
    }
    .banner-content {
        padding: 50px 0 30px;
    }
    .pkg-list {
        grid-template-columns: repeat(2, 1fr);
    }
    img.dnone {
        display: none;
    }
    .sec-2 .icon-card.steps-card {
        margin-top: 20px;
        height: auto;
    }
     span.tag {
        font-size: 16px;
        padding: 10px 32px;
        top: -18px;
    }
    .bottom ul {
        height: 178px;
    }
}
/* 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 */
}
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
/* Styles */
.testi-card {
    height: auto;
    margin-bottom: 1rem;
}






}


/* 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 : 250px)
and (max-width : 767px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .banner-content {
        padding: 40px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    
    .btn-wrap {
        flex-direction: column;
        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: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .mainBanner.has-after::after {
        content: none;
    }
    
    .mainBanner {
        min-height: auto;
    }
    
    .partners img {
        max-width: 104px;
    }
    
    ul.tabs {
        flex-wrap: wrap;
    }
    
    ul.tabs li {
        width: auto;
    }
    
    ul.tabs li a .text {
        font-size: 14px !important;
    }
    
    .testi-card {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 1rem;
        height: auto;
    }
    
    .accordion-list li h3 {
        gap: 1rem;
        font-size: 16px;
        line-height: 22px;
    }
    section{
        padding: 1rem 0;
    }
    .phone-wrap span {
        display: none;
    }
    .phone-wrap i {
        padding-right: 0px;
    }
    .header-links {
        justify-content: center;
    }
    .header-links li.last {
        display: none;
    }
    .top-header {
        padding: 8px 0;
    }
    .main-header {
        padding: 10px 0;
    }
    .search-wrapper {
       flex-wrap: wrap;
    }
    a.srch-btn {
        height: auto;
        padding: 1rem 1.5rem;
        border-radius: 0px 0px 20px 20px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    .mainBanner.sm {
        height: auto;
        padding: 30px 0;
    }
    img.dnone {
        display: none;
    }
    .banner-list li {
        font-size: 15px;
    }
    .mmpopup .centercont h3 span {
        margin: 0 14px;
        font-size: 26px;
    }
    .mmpopup {
        padding: 45px 12px 12px;
    }
    .testi-card {
        height: auto;
        margin-bottom: 1rem;
    }
    span.tag {
        font-size: 16px;
        padding: 10px 32px;
        top: -18px;
    }
    .bottom ul {
        height: 178px;
    }
    .logo img {
        max-width: 160px;
    }

    
}

