/*Main Css */
:root {
    --primary: #2460FB;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --shadder1: #dbebff;
    --shadder2: #fff0cf;
    --shadder3: #d8ffec;
    --shadder4: #ebebff;
    --shadder5: #ffe3e0;
    --font-heading: "Poppins", sans-serif;
    --font-accent: "Inter", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --border: 1px solid #c0b5f033;
    --font-regular: 16px;
    --font-small: 14px;
    --font-extra-small: 12px;
    --font-large: 20px;
    --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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-family: var(--font-heading);
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}


/* Accordian */
.accordion-list {
    position: relative;
}

.accordion-list li {
    padding: 20px 20px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #D1D5DB;
    background: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

ul.accordion-list li span {
    display: flex;
    position: relative;
}

.accordion-list li h3 {
    font-size: 24px;
    color: var(--black);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: var(--black);
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}

.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}

ul.accordion-list li.active h3:after {
    content: "\f077";
}

.answer p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
}

/* Accordian end*/
.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(--white);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar.open span {
    background-color: var(--black);
}

.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;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}

.container {
    max-width: 1420px;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

span {
    display: inline-block;
}

p {
    line-height: 1.5;
}

a {
    text-decoration: none;
}

a:hover {
    color: snow;
}

/*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: 99999;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px 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;
    padding: 10px 0;
}

header.sticky .menu>li>a {
    color: var(--black);
}

header.sticky .logo {
    filter: brightness(1) invert(0);
}

.logo {
    filter: brightness(0) invert(1);
}
.footer-logo a {
    filter: none;
}
header.sticky .menu-Bar span {
    background: var(--black);
}

.logo {
    display: inline-block;
}

.header-button {
    display: flex;
    gap: 1rem;
}


.logo img {
    display: block;
}

.show-tablet {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.menu>li>a {
    font-size: 16px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
}

.menu>li :hover>a,
.menu>li .active>a {
    color: var(--primary);
}



/* Main Banner CSS */

.mainBanner {
    background-size: cover;
    background-position: bottom left;
    padding: 150px 0 60px;
}

.banner-heading {
    font-size: 48px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
}

.banner-content > span {
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Poppins';
}

.banner-text {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--white);
}

.banner-text span,
.banner-text a {
    color: #FFFF00;
    font-weight: 600;
}

.banner-list li {
    font-size: 18px;
    color: var(--white);
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
}

.banner-list li img {
    padding-right: 5px;
}

.banner-form {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px 10px 0 0;
}

.banner-form h5 span {
    color: var(--primary);
}

.banner-form h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-field label {
    font-size: 12px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 1rem;
}

.form-field input,
.form-field select {
    font-size: 12px;
    color: #878787;
    width: 100%;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.form-field {
    margin-bottom: 1rem;
}
.radio label {
    font-size: 12px;
    color: var(--black);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.radio {
    display: flex;
    align-items: center;
    gap: 1rem;
}

input[type="radio"] {
    width: auto;
}

/* process section */
.process-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 2rem;
    border: 1px solid #EBEBEB;
    height: 100%;
    border-radius: 7px;
}

.process-box span {
    font-size: 14px;
    font-weight: 600;
    color: #2460FB;
    font-family: var(--font-heading);
}

.process-box h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    font-family: var(--font-heading);
}

.process-box p {
    font-size: 16px;
    color: #57534E;
}

.bg-img {
    background-size: cover;
    background-position: top right;
    padding: 0 4rem;
}

.why-box {
    border: none;
    padding: 0;
}



/* packages */
.pkg-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pkg-list>div {
    width: 33.33%;
    padding: 0rem 1rem;
}
.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: 26px; */
    /* height: 100%; */
    /* border: 2px solid transparent; */
    /* transition: all 0.4s; */
    /* box-shadow: -10px 14px 30px 0px #00000012; */
    /* margin-top: 1rem; */
}
.pckg {
    color: #000;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    /* margin-top: 1rem; */
    transition: 0.3s;
    background: #fff;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    border-radius: 26px;
    border: 2px solid transparent;
    padding: 20px 30px;
    
}

section.pckg-sec {
    background: #f5f5f5;
}
.pckg .btn-wrap .btn-a {
    background-color: #1C2E59;
    border: 2px solid #1C2E59;
}

.pckg .btn-wrap .btn-a.bordered {
    background-color: transparent;
}

.pckg:hover {
    border: 2px solid #291337;
}

.pckg:hover .btn-wrap .btn-a {
    background-color: var(--primary);
    border: 2px solid var(--primary);
}

.pckg:hover .btn-wrap .btn-a.bordered {
    background-color: transparent;
}

.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: 26px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 34px;
}

.pckg .upper .starting-in {
    font-size: 16px;
    line-height: 20px;
    color: #5b5b5b;
    margin-bottom: 10px;
}

.pckg .upper p {
    font-size: 14px;
    color: #868C8E;
    min-height: 45px;
}

.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0 0;
}

.pckg .upper .price .amount {
    font-weight: 700;
    font-size: 54px;
    color: #2460fb;
    font-family: var(--font-heading);
}

.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 16px;
    color: #5b5b5b;
    line-height: 20px;
}
.pckg .upper .price .uspto b {
    display: block;
}

.pckg .upper .price .uspto b {
    padding: 5px 10px;
    background: #1f2e58;
    color: white;
    border-radius: 100px;
}
.pckg .upper {
    /* border-bottom: 1px solid #E5E7EB; */
}

.pckg .bottom .includes {
    letter-spacing: 0.025em;
    /*text-transform: uppercase;*/
    color: #5b5b5b;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 1rem;
}

.pckg .bottom ul li {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #5b5b5b;
    position: relative;
    display: flex;
}

.pckg .bottom ul {
        margin: 1rem 0 1rem;
        /* min-height: 110px; */
        overflow-y: auto;
        /* max-height: 142px; */
        padding-right: 10px;
        height: 278px;
        overflow-y: scroll;
}

.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}

.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: #2460fb;
    margin-right: 12px;
}

.pckg .pop-tag {
    border-radius: 25px;
    background: #FFFF00;
    color: #212121 !important;
    font-size: 20px;
    font-weight: 600;
    line-height: inherit;
    letter-spacing: -0.4px;
    text-align: center;
    padding: 10px 20px;
    margin: -42px auto 10px;
    /* transform: translateY(-42px); */
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 44%;
}
.pckg.popular {
    background: #1c2e59;
    color: #fff;
    transform: scale(1.03);
}
.pckg.popular .btn-wrap .btn-a {
    background: #ffff00;
    color: #000;
    font-weight: 700;
    border: 2px solid #ffff00;
}
.pckg.popular * {
    color: #fff;
}
.pckg.popular .starting-in {
    color: #fff;
}
.pckg.popular .amount {
    color: #ffff00 !important;!i;!;
}
.pckg.popular .uspto {
    color: #fff !important;!i;!;
}
.pckg.popular .includes {
    color: #fff;
}
.pckg.popular .bottom ul li {
    color: #fff;
}
.pckg.popular .bottom ul li::before {
    color: #ffff00;
}
.pckg .btn-wrap .btn-a {
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 18px;
}
.pckg .btn-wrap {
    margin: 0;
}










/* packages */

/*Headings and paragraph*/
.primary-hd {
    font-size: 45px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -1px;
}

.primary-para {
    font-size: 18px;
    color: #57534E;
}




/* 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-a {
    padding: 10px 18px;
    font-weight: 600;
    background: var(--primary);
    color: white;
    font-size: 14px;
    border-radius: 4px;
    font-weight: var(--font-medium);
    border: 2px solid var(--primary);
    transition: .5s ease;
    display: inline-block;
    display: flex;
    gap: 5px;
    text-align: center;
    justify-content: center;
}

.btn-a.bordered {
    background: transparent;
    color: var(--primary);
}

.btn-a:hover {
    transform: scale(1.03);
}

.white {
    color: var(--white) !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 */
/* 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 {
    background: url("../images/popbg.webp") no-repeat;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 890px;
    background-size: cover !important;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 40px;
    max-width: 97%;
    max-height: 90vh;
    overflow-y: auto;
}

.mmpopup {
    text-align: center;
    /* background: #f8f8f8; */
    padding: 45px 25px 25px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
}

.mmpopup .fld-input {

    margin-bottom: 1rem;

}

.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(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: 26px;
    color: #565656;
    max-width: 390px;
    /* margin: auto; */
    display: block;
    position: relative;
    font-size: 18px;
    text-align: left;
}

.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: #006167;
    text-align: left;
}

.mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
}

.mmpopup .centercont h3 span {
    display: block;
    /* margin: 0 30px; */
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;
    color: #3A3D40;
    text-align: left;
}

.mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
}



.fld-input input {
    width: 100%;
    height: 100%;
    padding: 20px;
    font-size: 16px;
    background: #EEEEEE;
    outline: 0 !important;
    box-shadow: none;
    font-family: 'Inter';
    border-radius: 100px;
    border: 1px solid #E7E7E7;
    background: #FFF;
}

.fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
}

.fld-btn button {
    border-radius: 100px;
    background-color: var(--primary);
    width: 100%;
    color: white;
    font-size: 16px;
    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);
}


.mmpopup .form {
    flex-basis: 55%;
    padding: 0 1rem;
}

.mmpopup .img {
    transform: translateY(25px);
    display: flex;
}

/* popup */

/* footer */

footer {
    padding: 4rem 0 1.5rem;
}

.footer-logo img {
    filter: brightness(0);
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #353535;
    font-size: 14px;
}

.copyright a {
    color: #1D135C;
    font-weight: 600;
}

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 */


/* Portfolio  */

.mt-200 {
    margin-top: 200px;
}

.port-slide .det {
    padding: 10px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.port-slide .det span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-heading);
}

.port-slide .det a {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #31A8FE;
    /* text-decoration: underline; */
    border-bottom: 1px solid;
}


.portfolio-slider {
    position: relative;
    /* display: flex; */
    /* align-items: center; */
}

.portfolio-slider .port-slide img {
    width: 100%;
}

a.arrow-btn {
    position: absolute;
    top: 90%;
    z-index: 1;
}

.arrow-btn img {
    filter: brightness(0);
}

.portfolio-slider a.arrow-btn.right.slick-arrow {
    right: 0%;
}

.portfolio-slider a.arrow-btn.left.slick-arrow {
    right: 5%;
}


/* Portfolio  */


/* Testimonials */
.testimonial-content h6 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.testimonial-content span {
    font-size: 18px;
    color: #5B5D65;
    margin-bottom: 0.5rem;
}

/* 404 */

.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
}

.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
    color: white;
}

.error-image {
    margin-top: 40px;
    margin-bottom: 40px;
}

.thankyou-text {
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
    color: white;
}

/* 404 */
/* terms */

.terms .roman {
    list-style: upper-roman;
}

.terms ul {
    padding-left: 40px;
    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 */


/* COMPARISON PAGE */
/* Comparision */

.form_wrap {
    padding: 1.5rem;
}

.form_wrap b,
.form_wrap strong {
    font-weight: bolder !important;
}

.bgform h3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.bgform h3 span {
    font-size: 16px;
}

.bgform p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
}

.form-head {
    color: #fff;
    padding: 2rem 2rem 0;
    margin: 0 10px 30px;
    text-align: center;
    border-radius: 6px;
    background: #155B94;
}

.form-head .form-heading {
    font-size: 18px;
    white-space: nowrap;
    font-weight: 600;
    margin-bottom: 15px;
    justify-content: center;
}

.form-head br {
    display: none;
}

.form-head span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    font-size: 14px;
    font-weight: 500;
}

.form-head .form-price {
    font-size: 32px;
    margin: 1rem 0;
    font-weight: 600;
}

.form-head:hover .price .amount {
    color: #ebd82d !important;
}

.form_wrap .form-control {
    border: 1px solid #ddd;
    margin-top: 10px;
    min-height: 45px;
    border-radius: 4px;
}

ul.process-packs>li {
    width: 33%;
    background: #e9f4ff;
    margin: 1%;
    padding: 20px 20px 100px;
    border: 1px solid #0275df33;
    border-radius: 5px;
    position: relative;
}

ul.process-packs {
    display: flex;
}

ul.process-packs {
    display: flex;
}

ul.process-packs>li ul li {
    font-size: 14px;
    color: #707070;
    line-height: 1.4em;
    margin: 2px 0;
    border-bottom: 1px solid var(--primary)17;
    padding: 1px 0 4px 0;
}

ul.process-packs>li ul li:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f00c";
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    margin-right: 8px;
}

ul.process-packs>li>a {
    width: 90%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.head-sec {
    text-align: center;
    margin-bottom: 35px;
}

.head-sec h3 {
    font-size: 23px;
    font-weight: bold;
}

.head-sec h4 {
    font-size: 55px;
    margin: 15px 0 17px;
    color: #0275df;
}

small.fonts-inter {
    font-size: 16px;
    line-height: 24px;
}

table.pricing {
    margin: 0 0 30px;
}

table.pricing tr td:first-child {
    font-size: 15px;
    line-height: 26px;

}

.tp-check-pricing {
    width: 24px;
    height: 23px;
}

table.pricing tr td:first-child {
    width: 34.3%;
    font-size: 13px;
    line-height: 22px;
    text-align: left;
}

.bgform h3 {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 28px;
}

.btn-normal {
    padding: 10px 30px;
    display: inline-block;
    margin: 10px 0 10px;
    color: rgba(4, 39, 63, 1);
    font-size: 14px;
    font-weight: inherit;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 30px;
    background: #EBD82D;
}

.btn-normal:hover {
    transform: scale(1.03);
    color: white;
}

.add_owner {
    background: var(--primary);
    padding: 14px 30px;
    display: inline-block;
    margin: 10px 0 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: inherit;
}

.trash_this {
    display: flex;
    justify-content: end;
    margin-top: 30px;
}

.trash_this i {
    background: #E53935;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
}

.tp-check-pricing {
    display: inline-block;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: 0 auto;
    background-color: #000;
}
.tp-check-pricing i {
    color: var(--white);
    font-size: 12px;
}

.tp-check-pricing.orange {
    background-color: rgba(13, 114, 233, 1);
}

.tp-check-pricing.blue {
    background-color: rgba(254, 119, 73, 1);
}

table.pricing tr {
    border-bottom: 1px solid #e6e4e4;
}

table.pricing tr td {
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
}

a.btn1-normal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    width: 80%;
    height: 50px;
    background: #ebd82d;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 5%);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(4, 39, 63, 1);
    margin: 0 auto;
}

table.pricing tr td .text-hdng {
    font-size: 28px;
}

/* Comparision */







.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 {}

.leadforms-form-body-bg-color {
    background: rgb(255 255 255) !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;
}

.pkg-list .pckg {
    /* border: 2px solid #2460fb; */
}

.cta-sec .cta-img {
    display: none;
}
.mmpopup .leadforms-form-body-bg-color {
    background: transparent !important;
    border: 0;
}




























@media (max-width: 1440px) {
    .header-button-text {
        display: none;
    }

    .header-button .btn-a {
        border-radius: 100%;
        padding: 15px;
        font-size: 20px;
        display: inline-block;
    }

}

@media (max-width: 1200px) {
    .menu>li>a {
        font-size: 14px;
    }
}

@media (max-width : 1023px) {
    header {
        padding: 1rem 0;
    }

    .btns {
        margin: 1.5rem 0;
    }


    .menu-Bar {
        display: block;
        top: 0px;
    }

    .menuWrap.open {
        left: 0px;
    }

    .menuWrap {
        position: fixed;
        left: -210%;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 100%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
        padding: 100px 50px;
    }

    ul.menu {
        display: block;
    }

    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;
    }

    .header-button {
        margin-right: 50px;
    }

    .mainBanner {
        background-position: bottom right;
    }

    .banner-form {
        margin-top: 2rem;
    }

    #howitworks .row .col-lg-4 {
        margin: 15px 0;
    }

    .bg-img {
        background-position: top left;
        padding: 0 1rem;
    }

    .pkg-list>div {
        width: 50%;
        padding: 0.5rem 0.5rem;
    }

    .cta-img {
        text-align: center !important;
    }

    section {
        padding: 2rem 0;
        position: relative;
    }
    .copyright {
        margin: 1rem 0;
    }
    .footer-logo {
        width: 200px;
    }
    .process-box {
        margin: 15px 0;
    }














}

/* 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 */
}


/* 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 : 280px) and (max-width : 767px) {
    
    .mmpopup .leadforms-form-body-wrapper .leadforms-form-body {
    padding: 0 !important;
}
button#leadforms-submit-button {
    font-size: 14px !important;
}
    
    .header-button .btn-a {
        padding: 10px;
        font-size: 14px;
        width: fit-content;
    }

    .mainBanner {
        padding: 100px 0 0px;
    }

    .banner-heading {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .banner-text {
        font-size: 17px;
        margin-bottom: 1rem;
    }

    .btn-a {
        padding: 10px 15px;
        font-size: 14px;
        width: 100%;
        margin: 1rem 0;
    }

    .banner-form {
        padding: 1rem 1rem;
    }

    .primary-hd {
        font-size: 30px;
    }

    .primary-para {
        font-size: 14px;
    }

    .mb-3 {
        margin-bottom: 0.5rem !important;
    }

    .process-box p {
        font-size: 14px;
    }

    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .bg-img {
        border-radius: 10px;
    }

    .pkg-list>div {
        width: 100%;
    }

    .menuWrap {
        padding: 100px 20px;
    }

    #howitworks .row .col-lg-4 {
        margin: 5px 0;
    }
    table.pricing tr td .text-hdng {
        display: none;
    }
    table.pricing tr td:first-child .text-hdng {
        display: block;
        font-size: 30px;
    }
    table.pricing tr td {
        padding: 10px 0px;
    }
    .copyright {
        margin: 1rem 0;
    }
    .footer-logo {
        width: 200px;
    }
    .btn-wrap {
        flex-wrap: wrap;
    }
  .mmpopup .img{
        display: none;
    }
    .mmpopup .form{
        flex-basis: 100%;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
    }
    
    .mmpopup .centercont h4 {
        font-size: 30px;
    }
    
    .mmpopup .centercont h4 span {
        font-size: 44px;
    }
    
    .mmpopup .centercont p {
        font-size: 14px;
    }
    .form-field label {
        margin-bottom: 5px;
    }
    .form-field {
        margin-bottom: 10px;
    }
    .banner-form h5 {
        margin-bottom: 0;
    }
    .pckg .btn-wrap .btn-a.bordered {
        background-color: transparent;
        display: none;
    }
    .pckg .upper .title {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .pckg .upper .starting-in {
        font-size: 16px;
       
    }
    .pckg .bottom .includes {
       padding-bottom: 0;
        font-size: 16px;
    }
    .pckg .bottom ul li {
        font-size: 15px;
        line-height: 1.4em;
       
    }
    .pckg .upper .price {
        margin: 1rem 0 0;
    }
.pckg {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.36);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.36);
    border-radius: 5px;
    /* padding: 0 !important; */
    padding: 8px 14px 14px;
}
.pckg .pop-tag {
    font-size: 14px;
    padding: 10px 20px;
    margin: -26px auto 0px;
    max-width: 48%;
}
.pckg .bottom ul {
    height: 242px;
}
.pckg.popular {
    margin: 1rem 0 1rem;
}
.testimonial-content h6 {
    font-size: 16px;
}
.testimonial-content span {
    font-size: 14px;
}
img.max-wid {
    max-width: 53%;
}
.cta-img {
    display: none;
}
.footer-logo a {
    max-width: 135px;
}
}

.header-button {
    display: flex;
    gap: 1rem;
}