/*Main Css */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap');


:root {
    --primary: #003a70;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "DM Sans" , sans-serif;
    --font-accent: "DM Sans" , sans-serif;
    --font-body: "DM Sans" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #ff5e14;
    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: #ff5e14;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 25px 35px 25px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #F9F9F9;
    background: #F9F9F9;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    margin-bottom: 1rem;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #2D2D2D;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #000;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 700;
    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: 16px;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
}
/* Accordian */

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 28px;
    color: #6E6E6E;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    /* display: block; */
    font-weight: 700;
    color: #2D2D2D;
}

*: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: 20px 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: 15px;
    width: 15px;
    border-radius: 0;
    padding: 0px;
    background: #DADADA;
    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: 30px;
}

/*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: 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;
    max-width: 40%;
    padding-top: 10px;
}


/* 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: 10px 0 10px 35px;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: #6E6E6E;
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 15px 36px;
    border-radius: 6px;
    font-weight: 400 !important;
    background: linear-gradient(90deg, #003a70 0%, #00386aa1 100%);
    border: 0;
}
.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;
}
.banner-content {
    padding: 30px 0 0;
    position: relative;
}
h1.banner-heading {
    font-size: 54px;
    line-height: 60px;
    margin-bottom: 12px;
    font-weight: 700;
}
span.sub-heading {
    font-size: 16px;
    line-height: 22px;
    color: #6E6E6E;
    font-weight: 500;
    position: relative;
    margin-left: 52px;
    margin-bottom: 1rem;
}
p.banner-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 1rem;
    color: #6E6E6E;
}
span.sub-heading:before {
    content: "";
    display: block;
    position: absolute;
    height: 3px;
    width: 37px;
    background: var(--primary);
    top: 9px;
    left: -50px;
}

h1.banner-heading span {
    clip-path: polygon(0 0, 100% 7%, 100% 94%, 0% 100%);
    background: var(--primary);
    color: #fff;
    padding: 0px 6px;
}

.padding{
    padding-left: 12%;
    padding-right: 12%;
}
/* ---------------------------******************---------------------------------------------- */
.form-card {
    /* background: rgba(252, 252, 252, 1); */
    /* border-radius: 10px; */
    /* padding: 2rem; */
}
.form-card h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #0B0B0B;
}
.form-card h3 span {
    color: #ff5e14;
}
.field-ld {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}
.field-ld input, .field-ld select, .field-ld textarea {
    font-weight: normal;
    font-size: 14px;
    /* line-height: 28px; */
    border: 0;
    border: 1px solid #C1C1C1;
    background: #fff;
    border-radius: 4px;
    padding: 9px 14px;
    /* font-family: 'Inter'; */
    border: 0.4px solid #D3D3D3;
}
.field-ld .newcountrycode.pop1 input, .field-ld .newcountrycode.pop1 select{
    border-bottom: 0;
    background: none;
    border: 0;
}
button.submit {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    font-size: 24px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: .5s ease;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #33C7CC 0%, #38DCB6 100%);
    cursor: pointer;
    transition: .5s ease;
}
button.submit:hover {
    transform: scale(1.03);
}
.trustpilot-image {
    margin-top: 4rem;
}
.client-review {
    text-align: center;
    margin-top: 2rem;
}
.client-review p {
    padding: 1rem 0;
}
.field-ld select {
    padding: 14px 14px;
    color: #a8a8a8;
}
/* ----------------------**********************--------------------------------- */

.newcountrycode.pop1 {
    display: flex;
    position: relative;
    align-items: center;
    padding-left: 30px;
    /* border-bottom: 1px solid #ddd; */
    /* border-bottom: 1px solid #ADADAD; */
    border: 1px solid #C1C1C1 !important;
    /* background: #F8F8F8; */
    border-radius: 4px;
    height: auto;
}
.newcountrycode.pop1 select {
    width: 30px;
    padding: 0 10px;
    border: 0;
}
input#countrycode.pop1 {
    width: 60px;
}
.phone-field {
    flex-basis: 100%;
}
.newcountrycode.pop1 input {
    border: 0 !important;
}
.banner-img {
    margin-right: -156px;
    margin-left: 43px;
    padding-top: 112px;
}
header {
    box-shadow: 0px 10px 25px 0px #0000000D;
}
.banner-inner {
    position: relative;
}
.image-tags span {
    border: 1px solid #4e7df6;
    /* background: #f7f8ff; */
    background: #AEB6FF1A;
    border-radius: 10px;
    padding: 26px 25px 26px 25px;
    color: #333333;
    font-size: 14px;
    /* position: absolute; */
    width: 350px;
    line-height: 18px;
}
.image-tags span.tag2 {
    position: absolute;
    top: 19%;
    left: 3%;
}
.image-tags span.tag1 {
    position: absolute;
    top: 8%;
    right: 0%;
}
.image-tags span.tag3 {
    position: absolute;
    top: 36%;
    left: 11%;
    z-index: 1;
}




@keyframes slowFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.image-tags span {
    animation: slowFloat 5s ease-in-out infinite;
}

.image-tags span.tag1 {
    animation-delay: 0s; /* Start immediately */
}

.image-tags span.tag2 {
    animation-delay: 0.5s; /* Slight delay for staggered effect */
}

.image-tags span.tag3 {
    animation-delay: 1s; /* More delay for staggered effect */
}









.radio-input {
    /* visibility: hidden; */
    width: 18px;
    height: 18px;
  }
  .radio-label {
    /* position: relative; */
    /* padding-left: 35px; */
  }
  .radio-label:after {
    /* content: ""; */
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 5px;
    top: 5px;
    border-radius: 50%;
  }
  .radio-border {
    /* width: 20px; */
    /* height: 20px; */
    /* display: inline-block; */
    /* border: solid 2px #3cc8cb; */
    /* border-radius: 50%; */
    /* position: absolute; */
    /* left: 0px; */
    /* top: 0px; */
  }
  .radio-input:checked + .radio-label:after {
    transition: all 0.5s;
    background-color: #3dc9ca;
  }
  .radio-btn {
    margin-bottom: 8px;
}
.form-card a {
    font-weight: 600;
    color: var(--primary);
    font-size: 17px;
    margin-top: 10px;
}
.dots-image {
    position: absolute;
    top: 6%;
    left: 60%;
}
.type.input_group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.form-check-type {
    display: flex;
    align-items: center;
    gap: 30px;
}
.sec-heading h2 span {
    clip-path: polygon(0 0, 100% 7%, 100% 94%, 0% 100%);
    background: var(--primary);
    color: #fff;
    padding: 2px 4px;
}

.sec-heading ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    color: #6E6E6E;
    position: relative;
    /*display: flex;*/
}
.sec-heading ul li span {
    font-weight: 700;
}

.sec-heading ul li:before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: var(--primary);
    margin-right: 12px;
}
.sec1-image img {
    width: 100%;
}
.steps-card img {
    width: 100%;
    height: 100%;
}
.steps-card {
    position: relative;
    height: 100%;
}
.steps-card:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000091;
}
.step-text {
    position: absolute;
    bottom: 50px;
    left: 36px;
    right: 40px;
}
.steps-card .step-text span {
    font-size: 64px;
    font-weight: 700;
}
.steps-card .step-text h3 {
    font-size: 26px;
    padding: 16px 0;
}
.steps-card .step-text p {
    font-size: 16px;
}
section.sec-3 {
    background: #F2F8FB;
    padding: 0 10%;
}
.sec-3 .sec-heading h2 {
    font-weight: 500;
    font-size: 50px;
    line-height: 65px;
}
.review {
    background: #F9F9F9;
    padding: 40px;
}
.review p {
    color: #6D6D6D;
    font-size: 18px;
    line-height: 34px;
    font-style: italic;
    font-weight: 400;
}
.client-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.client-detail span.name {
    font-size: 20px;
    color: #2D2D2D;
    font-weight: 700;
}
.client-detail span.des {
    color: #4D77FF;
    font-size: 13px;
    font-weight: 700;
    display: block;
}
.client-detail img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* 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;
  }
  .mmpopup {
    text-align: center;
    background: #f8f8f8;
    padding: 45px 25px 25px;
  }
  .mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
  }
  .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 h4 span span {
    display: none;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(../../../../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(../../../../markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #0085ff;
  }
  .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: #3A3D40;
  }
  .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-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;
}
.pckg .bottom ul li strong {
    color: #000000;
    display: contents;
    font-weight: 500;
}
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 100px;
}
.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 {
    background: #fff;
    border-radius: 4px;
    /* height: 100%; */
    box-shadow: 4px 10px 25px 0px #0000001A;
    transition: 0.3s ease-in;
}
.pckg .btn-wrap a{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    background: #003a70;
    border: 1px solid;
}
.pckg .btn-wrap a.bordered{
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    border: 1px solid #003a70 !important;
    color: #003a70 !important;
}
.pckg:hover .btn-wrap a.bordered, .pckg.active .btn-wrap a.bordered {
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}
.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: 35px;
    line-height: 24px;
    margin-bottom: 1rem;
}
.pckg .upper .starting-in {
    font-size: 13px;
    line-height: 20px;
    color: #6E6E6E;
    font-weight: 700;
}
.pckg .upper p {
    font-size: 13px;
    /* line-height: 20px; */
    color: #6E6E6E;
    /* margin-bottom: 1.5rem; */
    /* min-height: 40px; */
    font-weight: 700;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
}
.pckg .upper .price .amount {
    font-weight: 700;
    font-size: 45px;
    line-height: 50px;
    color: #003a70;
}
.pckg .upper .price .uspto {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #6E6E6E;
}
.pckg .upper {
    border-bottom: 0.5px solid #6e6e6e7d;
}
.pckg .bottom .includes {
    /* letter-spacing: 0.025em; */
    /* text-transform: uppercase; */
    color: #6E6E6E;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 1rem;
}
.pckg .bottom ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6E6E6E;
    position: relative;
    display: flex;
}
.pckg .bottom ul {
    margin-top: 0;
    margin-bottom: 3rem;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f192";
    font-weight: 800;
    color: #003a70;
    margin-right: 12px;
    font-size: 18px;
}
section.sec-5:before {
    content: "";
    display: block;
    position: absolute;
    height: 75%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/banner/pricing-banner.webp);
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
}
.pckg.active {
    margin-top: -70px;
    background: linear-gradient(90deg, #003a70 0%, #00396a 100%);
    /* min-height: 784px; */
}
.pckg.active .upper .title {
    color: #fff;
}
.pckg.active .upper .starting-in {
    color: #fff;
}
.pckg.active .upper .price .amount {
    color: #ffffff;
}
.pckg.active .bottom ul li::before{
    color: #fff;
}
.pckg.active .upper .price .uspto {
    color: #fff;
}
.pckg.active .upper p {
    color: #fff;
}
.pckg.active .bottom ul li {
    color: #fff;
}
.pckg.active .bottom ul li strong {
    color: #fff;
}
.pckg.active .bottom .includes {
    color: #fff;
}
.pckg.active .upper {
    border-bottom: 0.5px solid #ffffff;
}
.pckg:hover {
    background: linear-gradient(90deg, #003a70 0%, #00396a 100%);
    /* height: 100%; */
}
.pckg:hover .upper .title, 
.pckg:hover .upper .starting-in,  
.pckg:hover .upper .price .uspto, 
.pckg:hover .upper p, 
.pckg:hover .bottom ul li, 
.pckg:hover .bottom ul li strong, 
.pckg:hover .bottom .includes {
   color: #fff;
}
.pckg:hover .upper .price .amount{
    color: #ffffff;
}
.pckg:hover .bottom ul li::before{
    color: #fff;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
    position: relative;
}
.sec-heading:before {
    content: "";
    display: block;
    position: absolute;
    top: -38px;
    left: -35px;
    height: 100%;
    width: 100%;
    background-image: url(../images/dots.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: top right;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 40px;
    line-height: 52px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6E6E6E;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #6E6E6E;
    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 30px;
    background: var(--primary);
    color: white;
    font-size: 24px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: .5s ease;
    /* width: 100%; */
    text-align: center;
    background: linear-gradient(90deg, #003a70 0%, #00386aa1 100%);
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
    border: 1px solid #000;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
}
.theme-btn-borderedfull {
    background: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    border-radius: 3px;
    width: 100%;
    padding: 14px 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}
.leadforms-submit-button, button.leadforms-submit-button, input[type=submit].leadforms-submit-button, button[type=submit].leadforms-submit-button {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
/* 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: #f2f8fb;
    padding: 80px 0 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.4px solid #D3D3D3;
    padding: 20px 0;
    margin-top: 50px;
}
.copyright p,.copyright a {
    color: #7A7A7A;
    font-size: 14px;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
.footer-cta h2 {
    color: #2D2D2D;
    font-size: 60px;
    font-weight: 600;
    padding-bottom: 3rem;
}
.footer-cta p {
    color: #0B0B0B;
    font-size: 26px;
    font-weight: 500;
}
.footer-cta a {
    color: #0B0B0B;
    font-size: 26px;
    font-weight: 500;
    padding-top: 2rem;
}
.footer-cta a i.fa.fa-phone {
    color: var(--primary);
    font-weight: 500;
}
.footer-cta .btn-wrap {
    margin: 2rem 0;
}
/* 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: 2rem;
}
/* terms */

.pricingdetail-box {
    background: #22cac821;
    padding: 4%;
}

.pricingdetail-box h3 {
    font-size: 25px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.pricingdetail-box p {
    font-size: 16px;
    color: #575757;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.pricingdetail-box table td, .pricingdetail-box table th {
    border: 1px solid #179d9b;
    padding: 16px;
    background: #fff;
    line-height: 1.4em;
}

.pricingdetail-box table {
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
}

.pricingdetail-box table th {
    background: #179d9b;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

section#pricingdetail {
    padding-top: 0;
}


.tooltipp {
  position: relative;
  display: inline-block;
}

.tooltipp .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 138%;
    left: -42%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
    text-align: left;
    line-height: 1.3em;
}

.tooltipp .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltipp:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    .padding {
        padding-left: 2%;
        padding-right: 2%;
    }
/*    .menu > li {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    padding: 4px 0 10px 20px;*/
/*}*/

    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;
        font-size: 13px;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

/* 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 */
.sec-3 .sec-heading h2 {
    font-size: 38px;
    line-height: 40px;
}
.review {
    padding: 18px;
}
.review p {
    font-size: 16px;
    line-height: 26px;
}









}
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
    /* Styles */
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        margin-top: 15px;
    }
    .pckg.active {
        margin-top: 0;
    }
    .footer-cta h2 {
        font-size: 42px;
        padding-bottom: 2rem;
    }
    .copyright {
        flex-direction: column;
        gap: 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 : 375px)
and (max-width : 736px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 18px;
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 100px 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;
    }
    .image-tags {
        display: none;
    }
    .form-card p {
        font-size: 12px;
    }
    .form-card a {
        font-size: 12px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .sec-3 .sec-heading h2 {
        font-size: 28px;
        line-height: 32px;
    }
    section.sec-3 {
        padding: 30px 10% 0;
    }
    .sec-heading ul li {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 15px;
    }
    .pckg.active {
        margin-top: 0;
    }
    section.sec-5:before {
        height: 100%;
        background-size: cover;
    }
    .pckg .upper .price {
        margin: 1rem 0;
    }
    .review {
        padding: 22px;
    }
    .review p {
        font-size: 16px;
        line-height: 26px;
    }
    .accordion-list li {
        padding: 20px 20px 20px 20px;
    }
    .accordion-list li h3 {
        max-width: 90%;
    }
    .footer-cta h2 {
        font-size: 30px;
        line-height: 38px;
        padding-bottom: 1rem;
    }
    .footer-cta p {
        font-size: 18px;
    }
    .footer-cta a {
        font-size: 18px;
        padding-top: 1rem;
    }
    footer {
        padding: 40px 0 0;
    }
    .copyright p, .copyright a {
        font-size: 14px;
        line-height: 20px;
    }
    .mmpopup .centercont h3 span {
        margin: 0 22px;
        font-size: 28px;
    }
    .step-text {
        position: absolute;
        bottom: 23px;
        left: 20px;
        right: 26px;
    }
    .steps-card {
        margin-bottom: 1rem;
        height: auto;
    }
    .pricingdetail-box table {
        width: 100%;
    }
}

@media (max-width: 1400px) {
    .logo img {
    display: block;
    max-width: 105%;
    padding-top: 10px;
}
.menu > li > a {
    display: block;
    font-size: 13px !important;
    color: #6E6E6E;
    /* text-transform: uppercase; */
    font-weight: 500;
}
.col-lg-9{
flex:0 0 auto;
width:90%;
}
.col-lg-3{
flex:0 0 auto;
width:10%;
    
}
    
    
    
    
    
}