/*Main Css */
:root {
    --primary: #00B67A;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Plus Jakarta Sans" , sans-serif;
    --font-accent: "Plus Jakarta Sans" , sans-serif;
    --font-body: "Plus Jakarta Sans" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #0dcaf0ba;
    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: #0dcaf0ba;
}

/* Tabbing CSS */

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
}

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

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

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

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
    height: 100px;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}
.menu > li > a {
    display: block;
    font-size: 18px;
    color: var(--black);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    color: white !important;
    font-weight: 600 !important;
    padding: 20px 30px;
    transition: .5s ease;
    border-radius: 15px;
    background: #0045FF;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.70);
    line-height: normal;
    border: 1px solid #0045FF;
}
.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;
    background: #f1f1f1;
}
.banner-content {
    padding: 50px 0 120px;
    /* text-align: center; */
}
h1.banner-heading {
    margin-bottom: 2rem;
    color: #152741;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
}
span.sub-heading {
    color: #152741;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    padding: 20px 0px;
}
p.banner-text {
    margin: 1.5rem 0px 2rem 0px;
    color: #152741;
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
}


/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 25px 30px 25px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #8fbcff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background: #FFF;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #000000;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF ;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
}
.answer p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}
/* Accordian */

/* packages */
.pckg-sec{
    background: #f5f5f5;
}
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
    margin-top: 2rem;
}

.pckg {
    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: 25px 25px 20px;
}
.pckg .btn-wrap a{
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}

.pckg .upper .title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 500;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
    justify-content: center;
}
.pckg .upper .price .amount {
    font-weight: 700;
    font-size: 51px;
    line-height: 40px;
    color: #0045FF;
}
.pckg .upper .price .uspto {
    color: #A7A7A7;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 36px;
}
.pckg .upper {
    border-bottom: 1px solid #E5E7EB;
    
}
.pckg .bottom .includes {
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
.pckg .bottom ul li {
   font-weight: 400;
   font-size: 16px;
   line-height: 30px;
   color: #000000;
   position: relative;
   display: flex;
   gap: 5px;
}
.pckg .bottom ul {
    margin: 1rem 0 3rem;
    overflow-y: auto;
    padding-right: 10px;
    height: 254px;
    overflow-y: scroll;
}
.bottom span {
   color: #205CFF;
}
.pckg .bottom ul li {
    margin-bottom: 1rem;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: #1C2E59;
    margin-right: 12px;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
.pckg:hover {
    border: 1px solid #4f7efa;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    margin-bottom: 1rem;
    color: #152741;
    font-size: 40px;
    font-weight: 700;
    line-height: 52.8px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #5F5F5F;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0rem 0;
    justify-content: center;
}
.btn-wrap .theme-btn {
    padding: 20px 30px;
    transition: .5s ease;
    border-radius: 15px;
    background: #0045FF;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.70);
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #0045FF;
}
.btn-wrap .theme-btn.bordered {
    background: #ffffff;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}
.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}
.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}
.newcountrycode .phone-field {
    width: 100%;
}
.newcountrycode input {
    border: 0;
}
/* Country Code */

/* footer */
footer {
    background: #030E1A;
    padding: 1.5rem 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
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: calc(50% - 54px);
    width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    font-size: 24px;
    color: #333;
    box-shadow: 0px 1.32566px 14px rgba(0, 0, 0, 0.08);
}
.portfolio-slider a.arrow-btn.right.slick-arrow {
    right: 8%;
}
.portfolio-slider a.arrow-btn.left.slick-arrow {
    left: 8%;
}
/* Portfolio  */

/* Testimonials */
.testimonials {
    position: relative;
    /* color: white; */
    padding-bottom:100px;
    overflow: hidden;
    background: #EDF2FF;
}
.testimonials::before{
    content: "";
    background: url('../images/testi.webp') no-repeat;
    width: 300px;
    height: 100%;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}
.rating span {
    color: #34A585;
    font-weight: 500;
    font-size: 50px;
    line-height: 30px;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}
.rating p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: white;
}
.rating {
    margin-bottom: 50px;
}
.testi-card {
    background: white;
    padding: 30px;
    box-shadow: 4px 4px 64px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.testi-card::before{
    content: '';
    background: url('../images/qoute.webp') no-repeat;
    
    width: 65px;
    height: 40px;
    position: absolute;
    background-size: contain;
    z-index: -1;
}
.testi-card p {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}
.testi-card .client {
    gap: 10px;
    display: flex;
    align-items: center;
}
.testi-card .client .det .name {
    color: #34A585;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-heading);
}
.testi-card .client .det .des {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #C9C9C9;
}
.testi-card .client .det {
    display: flex;
    flex-direction: column;
}
.overlap-slider {
    position: absolute;
    width: 180%;
}
.arrows {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.testimonials .slick-slide {
    margin: 20px 15px;
}
/* Testimonials */

/* Testimonials 2 */
.testi-slider-2 .testi-slide {
    background: #F1EDFF;
    box-shadow: -3px 3px 0px #0B0B0B;
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
}
.testi-slider-2 .testi-slide p {
    color: #302357;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
.testi-slider-2 .testi-slide .bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.testi-slider-2 .testi-slide .client {
    margin-top: 1rem;
}
.testi-slider-2 .testi-slide .client .det .name {
    font-weight: 500;
    font-size: 26px;
    line-height: 39px;
    color: #0B0B0B;
}
.testi-slider-2 .testi-slide .client .det .des {
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}
.testi-slider-2 .testi-slide .bottom .stars {
    background: #407BFF;
    border-radius: 42px;
    padding: 10px 20px;
    color: #00F000;
    display: flex;
    font-size: 12px;
    gap: 8px;
}
/* Testimonials 2 */


.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
    margin: 0 10px;
}
.design-card-list-2 {
    direction: rtl;
}
.design-card-list,
.design-card-list-2 {
    padding-bottom: 2rem;
}
.design-card-list li,
.design-card-list-2 li {
    position: relative;
    display: flex !important;
    justify-content: center;
}
.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 50px;
    position: absolute;
    width: auto;
    height: 66px;
    bottom: 20px;
    z-index: 1;
    background: rgb(0 0 0 / 50%);
    border-radius: 25px;
    opacity: 0;
    transition: .5s ease;
}
.design-card-list li:hover .indusrtry-name,
.design-card-list-2 li:hover .indusrtry-name {
    opacity: 1;
}
.indusrtry-name p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.rated {
    margin-bottom: 1rem;
}
.color-dark {
    color: #212121 !important
}
.color-2 {
    color: #2D2D2D !important
}
.mt-responsive {
    margin-top: 20px;
}
.rated p {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    padding: 1rem 0;
}


/* Portfolio */
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
ul.overview-nav.d2 a {
    padding: 15px 18px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 5px;
    color: #333333;
}
ul.overview-nav.d2 li.active a {
    background: #3B38EB;
    color: white;
    border-color: #3B38EB !important;
}
.port-card {
    margin-bottom: 1.5rem;
}
.port-card img {
    width: 100%;
}
/* Portfolio */

/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}
ul#counter li .counter>div {
    font-weight: 700;
    font-size: 64px;
    color: #000;
    margin-bottom: 0rem;
    flex-shrink: 0;
    font-family: 'Inria Serif';
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 0rem;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul#counter li .counter span.text {
    font-size: 15.3px;
    font-family: 'Euclid Square';
    font-weight: normal;
}
/* -------------------------counter CSS------------------------  */

/* -------------------------contact us-------------------------- */
.input-field1 label {
    padding-left: 10px;
    color: #292929;
    font-weight: 500;
    padding-bottom: 8px;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 58px;
    width: 100%;
    font-size: 16px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 30px;
    /* box-shadow: 0 16px 24px 0 rgba(189, 196, 205, 0.13); */
    border-radius: 20px;
    border: solid 1px #00000021;
    background-color: #fff;
}
.input-field1 textarea {
    height: 58px;
}
.send {
    text-align: left;
    padding-top: 35px;
}
.send input[type="submit"] {
    height: 70px;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    padding: 12px 50px;
    border-radius: 50px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    background-color: #0b5d51;
}
.details h5 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #202529;
}
.details a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.details {
    margin-bottom: 40px;
}
.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    height: 40px;
    width: 40px;
    background: #008576;
    border-radius: 50px;
    text-align: center;
}
.social-icons li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}
.details a i, .details p i {
    color: #008576;
    padding-right: 12px;
}
/* -------------------------contact us-------------------------- */

/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    max-height: 90vh;
  }
  .mmpopup {
    background: url("../images/popup-bg.png");
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 60px;
  }
  .mmpopup .form-text {
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
  }
  .mmpopup .form-text a {
    color: #659640;
    font-weight: 700;
  }
  .mmpopup .form-text a:hover {
    color: var(--secondary);
  }
  .mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
  }
  .closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #205CFF;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    border: 4px solid #f45a28;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    background: #F45A28;
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    padding: 30px 0;
    background: #0E182C;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #005175;
    padding: 20px 0;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    color: #fff;
    line-height: 1.5;
    font-size: 16px;
    padding-top: 18px;
}
.footer-hdng h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}
.f-menu li a {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hours p {
    color: #fff;
    font-size: 16px;
}
.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    background: #222222;
}
.f-link li {
    width: 40.8px;
    height: 40.8px;
    background: var(--primary);
    border-radius: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ----------------------------------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 .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 */


.sec-heading.center.ext-icon {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 2.5rem 0px;
    margin-top: -10rem;
    margin-bottom: 4rem;
}

p.banner-text span {
    color: #0045FF;
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    display: block;
}

.design-card-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.design-card-list li {
    width: 170px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-card-list li img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.comparison-card{
    max-width: 850px;
    margin:auto;
    display:flex;
    justify-content:center;
    gap: 30px;
    flex-wrap:wrap;
    margin-top: 3rem;
}

.comparison-column{
    flex:1;
    min-width:280px;
}

.comparison-column h3{
    font-size: 25px;
    font-weight:700;
    margin-bottom:15px;
}

.comparison-column:first-child h3{
    color:#555;
}

.comparison-column:last-child h3{
    color:#0A2D8F;
}

.box{
    border-radius:12px;
    padding: 20px 30px;
}

.problem-box{
    border:1px solid #d9d9d9;
    background:#fff;
}

.solution-box{
    border-radius: 15px;
    border: 4px solid #012073;
    background: #EDF2FF;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.50);
}

.box ul{
    list-style:none;
    text-align: start;
}

.box ul li{
    font-size:18px;
    color:#444;
    margin-bottom:12px;
    line-height:1.4;
    position:relative;
    padding-left:18px;
}

.box ul li:last-child{
    margin-bottom:0;
}

.solution-box ul li{
    color: #000000;
}

.solution-box ul li::before{
    color:#1f57ff;
}

@media(max-width:768px){
    .comparison-card{
        flex-direction:column;
    }

    .comparison-column{
        width:100%;
    }

    .comparison-column h3{
        font-size:24px;
    }

    .box ul li{
        font-size:16px;
    }
}

.sec-heading.center.ext-icon h2 {
    font-size: 24px;
    margin-bottom: 2rem;
    line-height: 1;
}

.opt-sec-2-main {
    border-radius: 15px;
    background: #FFF;
    padding: 20px 20px;
    text-align: center;
    margin-bottom: 2rem;
    height: 100%;
}

.opt-sec-2-main p {
    color: #152741;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.opt-sec-2-main h4 {
    color: #001439;
    font-size: 22px;
    font-weight: 700;
    line-height: 31.2px;
    margin: 0.7rem 0px;
}

.sec-3-main-text p {
    color: #152741;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.sec-3-main-text h2 {
    color: #0045FF;
    font-size: 22px;
    font-weight: 700;
    line-height: 31.2px;
    margin: 1rem 0px;
}

.sec-3-main-img {
    text-align: center;
}

section.sec-3 .sec-heading {
    margin-bottom: 4rem;
}

section.sec-3 .sec-heading.ext {
    margin-bottom: 0rem;
}

.sec-heading.center.ext-icon.main {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 2.5rem 0px;
    margin-bottom: 4rem;
    width: 60%;
    margin: auto;
    margin-top: 4rem;
}

.sec-heading.center span {
    color: #0045FF;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 2px;
}

.sec-testi-card h6 {
    color: #0045FF;
    font-size: 21px;
    font-weight: 700;
    line-height: 25.2px;
    margin-bottom: 1rem;
}

.sec-testi-card p {
    color: #152741;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0rem 0px 0.7rem 0px;
}

.opt-sec-2-main.ext {
    height: auto;
}

section.faqs {
    background: #EDF2FF;
}

.sec-heading p i {
    font-style: italic;
}

.footer-sec {
    text-align: center;
}

.terms {
    padding-top: 15px;
}

.terms a {
    padding: 0px 10px;
    color: #fff;
}

.footer-sec h6 {
    padding: 0px 0px 20px 0px;
    color: #fff;
    font-size: 18px;
}



@media (max-width: 1440px) {}

@media (max-width: 1200px) {

    .menu-Bar {
    display: none;
}

span.sub-heading {
    font-size: 16px;
    line-height: 15px;
    padding: 15px 0px;
}

h1.banner-heading {
    margin-bottom: 1rem;
    font-size: 38px;
    line-height: 1.2;
}

p.banner-text {
    margin: 1rem 0px 1rem 0px;
    font-size: 18px;
    line-height: 30px;
}

.btn-wrap .theme-btn {
    padding: 15px 25px;
    font-size: 16px;
}

.sec-heading.center.ext-icon {
    padding: 1.5rem 0px;
}

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

.comparison-column h3 {
    font-size: 18px;
}

.box ul li {
    font-size: 16px;
}

.comparison-card {
    margin-top: 2rem;
}

.opt-sec-2-main h4 {
    font-size: 18px;
}

.opt-sec-2-main p {
    font-size: 15px;
    line-height: 22px;
}

.sec-heading p {
    font-size: 16px;
    line-height: 24px;
}

.sec-3-main-text h2 {
    font-size: 20px;
    line-height: 20px;
}

.sec-3-main-text p {
    font-size: 15px;
    line-height: 22px;
}

.sec-heading.center.ext-icon h2 {
    margin-bottom: 1rem;
}

.pckg .upper .title {
    font-size: 22px;
    margin-bottom: 0.5rem;
}

.pckg .upper p {
    font-size: 14px;
}

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

.pckg .bottom ul li {
    font-size: 14px;
    line-height: 1.5;
}

.pckg .bottom ul {
    margin: 1rem 0 1rem;
}

.pckg .upper .price .amount {
    font-size: 40px;
    line-height: 20px;
}

.pckg .upper .price {
    margin: 1rem 0;
}

.sec-testi-card p {
    font-size: 14px;
    line-height: 1.5;
}

.sec-testi-card h6 {
    font-size: 16px;
    line-height: 20px;
}

.accordion-list li {
    padding: 15px 20px 15px 20px;
}

.accordion-list li h3 {
    font-size: 16px;
    line-height: 1.5;
}

    header{
        padding: 1rem 0;
    }

    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        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;
    }

    img {
        max-width: 100%;
        height: auto;
    }
    
    ul.menu > li  {
        padding: 0;
    }
    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;
    }
}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        width: 100%;
        position: relative;
    }
}

@media (max-width : 992px){
    span.sub-heading {
        line-height: 26px;
        padding-top: 0;
    }

    .sec-3-main-img {
    display: none;
}

.sec-testi-card {
    margin-bottom: 2rem;
}

.sec-heading h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    line-height: 33px;
}

.opt-sec-2-main {
    padding: 10px 10px;
}

h1.banner-heading {
    font-size: 30px;
    line-height: 1.4;
}
}

@media only screen
and (min-width : 375px)
and (max-width : 768px) {

    .opt-sec-2-main h4 {
    font-size: 14px;
}

.sec-3-main-text p {
    margin-bottom: 1rem;
}

    .sec-heading.center.ext-icon {
    margin-top: 0rem;
    margin-bottom: 2rem;
}

section.sec-3 .sec-heading {
    margin-bottom: 1rem;
}

.sec-heading.center.ext-icon.main {
    width: 100%;
    padding: 30px 20px 0px 20px;
}

.answer p {
    font-size: 13px;
    line-height: 20px;
}

    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 10px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 0rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 26px;
        line-height: 34px;
        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;
    }

    .sec-heading h2 {
        font-size: 22px;
        line-height: 31px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

}







.comparison-card{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.comparison-column{
    flex:1;
    min-width:320px;
}

.comparison-column h3{
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.box{
    border:2px solid #ddd;
    border-radius:18px;
    padding:35px 40px;
}

.problem-box{
    background:#fff;
}

.solution-box{
    background:#eef4ff;
    border-color:#1e5eff;
}

.box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.box li{
    position:relative;
    padding-left:35px;
    margin-bottom:22px;
    font-size:24px;
    font-weight:500;
    color:#444;
    line-height:1.4;
}

.box li:last-child{
    margin-bottom:0;
}
/* Red Cross */
.problem-box li::before{
    content:"\2716";
    position:absolute;
    left:0;
    top:1px;
    color:#ff1f1f;
    font-size:16px;
    font-weight:700;
}

/* Blue Tick */
.solution-box li::before{
    content:"\2714";
    position:absolute;
    left:0;
    top:1px;
    color:#1e5eff;
    font-size:18px;
    font-weight:700;
}







.package-box {
    border-left: 2px solid #c9c9c9;
    padding: 70px 0 70px 40px;
    height: 100%;
}

.package-title {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 3px;
    color: #000000;
    margin-bottom: 28px;
    font-weight: 900;
}

.package-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d8d8d8;
    margin-left: 18px;
}

.package-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 22px;
    font-size: 20px;
    font-weight: 600;
}

.package-box ul li:last-child {
    margin-bottom: 0;
}

.package-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #29a7e8;
}

.main-header {
    padding-bottom: 15px;
    border-bottom: 2px solid #c3c3c3;
}










.featured-cta{
    padding:100px 0;
    background:#f7f9fd;
}

.cta-box{
    background:#fff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 30px 80px rgba(18,38,63,.08);
    overflow:hidden;
    position:relative;
}

.cta-box:before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#1f6fff;
    opacity:.08;
    border-radius:50%;
    right:-180px;
    top:-180px;
}

.eyebrow{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#1f6fff;
    text-transform:uppercase;
    margin-bottom:18px;
}

.cta-list{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.cta-list li{
    position:relative;
    padding-left:38px;
    margin-bottom:18px;
    font-size:19px;
    font-weight:600;
}

.cta-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:-1px;
    width:24px;
    height:24px;
    background:#1f6fff;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:24px;
    font-size:14px;
}

.btn-wrap{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.cta-image{
    text-align:center;
    position:relative;
}

.cta-image img{
    width:100%;
    max-width:600px;
    border-radius:20px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
    transition:.4s;
}

.cta-image img:hover{
    transform:translateY(-10px);
}

@media(max-width:991px){

.cta-box{
    padding:40px 30px;
}

.cta-content{
    margin-bottom:50px;
    text-align:center;
}

.cta-content h2{
    font-size:42px;
}

.cta-list{
    text-align:left;
}

.btn-wrap{
    justify-content:center;
}

}