/*Main Css */
:root {
    --primary: #2A3EA5;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --font-heading: "Cabin" , sans-serif;
    --font-accent: "Lato" , sans-serif;
    --font-body: "Lato" , sans-serif;
    --icon: "Font Awesome 6 Pro", sans-serif;
}

::selection {
    background: #2A3EA5;
    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: #2A3EA5;
}

/* 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: #1A1A1A;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
    color: #1A1A1A;
}

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

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

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/
header {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  position: relative;
  background: transparent;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
}
header.sticky {
  /* background: #101840; */
  /* box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
    0px 2px 4px -1px rgb(0 0 0 / 6%); */
  /* top: 0; */
}
.menuWrap2 {
  display: flex;
  align-items: center;
  justify-content: end;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
}


/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: none;
    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: 8px 0 8px 10px;
}
.menu > li > a {
  /* display: block; */
  font-size: 16px;
  color: var(--black);
  /* text-transform: uppercase; */
  font-weight: 500;
}
.header-btn {
  background: var(--primary);
  color: white !important;
  padding: 5px 5px 5px 14px;
  font-weight: 400 !important;
  font-family: 'Lato';
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0.30);
}
.header-btn:hover {
  transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
  color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.banner-content {
    padding: 70px 0 75px;
    z-index: 1;
    position: relative;
}
h1.banner-heading {
    margin-bottom: 15px;
    font-size: 74px;
    line-height: 70px; /* 94.595% */
    margin-right: -32px;
    display: flex;
    align-items: self-start;
    flex-direction: column;
    position: relative;
}
span.sub-heading {
    font-weight: 500;
    border-radius: 10px;
    border-left: 6px solid #fff;
    background: rgb(55 72 157);
    font-size: 18px;
    line-height: 24px; /* 171.429% */
    padding: 8px 16px;
    margin-bottom: 20px;
}
p.banner-text {
    margin-bottom: 0rem;
    font-size: 18px;
    line-height: 26px; /* 144.444% */
    opacity: 0.8;
}
img.left-vector {
    position: absolute;
    top: 0;
    left: 0;
}
img.right-vector {
    position: absolute;
    top: 0;
    right: 0;
}
img.diamond-image {
    position: absolute;
    right: -8%;
    top: -10px;
}

.banner-image{position:relative;/* overflow:hidden; *//* fill:rgba(255,255,255,0.70); *//* backdrop-filter:blur(25px); *//* background:#ffffffab; *//* border-radius: 10px; */display:flex;align-items:center;justify-content:center;/* width: 475px; *//* height: 323px; */margin: 0 auto;/* text-align: center; */flex-direction: column;}
.banner-img-inner,.scroll-image{overflow:hidden;position:relative;border-radius:8px}
.banner-img-inner{flex-shrink:0;display:flex;flex-direction:column;width: 475px;height: 323px;}
.ban-image img{position:absolute;width:100%;height:auto;animation:16s 1.2s infinite autoScrollImgAnimation}
.scroll-image{height:408px;padding:0;/* margin:6px 14px 14px; */}
.image-svg{margin-top:-5px}
@keyframes autoScrollImgAnimation {
    0% {
        top: 0;
        transform: translateY(0);
    }
    20% {
        top: 30.7%;
        transform: translateY(-30.7%);
    }
    40% {
        top: 52.2%;
        transform: translateY(-52.2%);
    }
    60% {
        top: 86.5%;
        transform: translateY(-86.5%);
    }
    80% {
        top: 100%;
        transform: translateY(-100%);
    }
    92% {
        top: 0;
        transform: translateY(0);
    }
    100% {
        top: 0;
        transform: translateY(0);
    }
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1697px;
}

.header-btn.chatbtn {
    border-radius: 200px;
    border: 1px solid #FFF;
    background: #FFF;
    color: #2A3EA5 !important;
    padding: 3px 5px 3px 14px;
}
.banner-content ul li {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    line-height: 26px; /* 144.444% */
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    padding: 15px 0;
}
.banner-content ul li.last {
    border-bottom: 0;
}
img.top-arrow {
    margin-left: 44%;
    margin-bottom: 5%;
}
img.bottom-arrow {
    margin-top: 5%;
}
.circle-image {
    position: absolute;
    top: 50%;
    right: 5%;
}
.main-header {
    padding-top: 20px;
}
.trusted-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}
.trusted-slider.slick-initialized.slick-slider div {
    display: flex !important;
    align-items: center !important;
}
.sec-1 {
    padding: 42px 0;
    background: #101840;
}
section.sec-2 {
    padding: 106px 0 100px;
}
ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-radius: 40px;
    border: 1px solid rgba(27, 57, 129, 0.30);
    padding: 7px;
    width: fit-content;
    margin: 0 auto 58px;
}
ul.overview-nav a {
    padding: 12px 20px;
    border-radius: 45px;
    border: 1px solid rgba(229, 96, 0, 0.00);
    color: rgba(26, 26, 26, 0.76);
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
ul.overview-nav li.active a {
    background: #3B38EB;
    color: white;
    border-color: #3B38EB !important;
}

.portfolio-wrapper {
    border-radius: 40px;
    background: rgba(35, 52, 137, 0.10);
    padding: 20px 30px;
    margin-bottom: 40px;
}
.portfolio-wrapper h3 {
    color: #1A1A1A;
    font-size: 28px;
    line-height: normal;
    padding-bottom: 20px;
}
.port-card img:hover {
    border: 4px solid var(--primary);
    border-radius: 18px;
}
.port-card {
    /* transition: 0.3s ease; */
    border: 4px solid transparent;
}
.port-card a {
    transition: 0.3s ease;
}
.theme-btn.bordered2 {
    border-radius: 200px;
    border: 1px solid #2A3EA5 !important;
    background: rgba(42, 62, 165, 0.05) !important;
    color: var(--primary) !important;
    padding: 5px 4px 4px 24px !important;
}
section.sec-3 {
    background: rgba(42, 62, 165, 0.10);
    padding: 80px 0 76px;
}

.chooseus-card {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 29.5px;
    display: flex;
    align-items: center;
    gap: 22px;
}
.chooseus-text h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 8px;
}
.chooseus-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}
ul#counter li .counter>div {
    margin-bottom: 0rem;
    flex-shrink: 0;
    /* text-align: center; */
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    
    
    
     /* 100% */
    color: #2A3EA5;
    font-family: Cabin;
    font-size: 62.794px;
    font-style: normal;
    font-weight: 600;
    line-height: 40.658px; /* 88.636% */
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 0rem;
    text-align: left;
    line-height: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid rgba(26, 26, 26, 0.30);
}
ul#counter li .counter span.text {
    text-align: center;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
    
    
     /* 144.444% */
    letter-spacing: 2px;
    color: #1A1A1A;
    font-family: Lato;
    font-size: 22.834px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.251px; /* 150% */
    opacity: 0.8;
}
ul#counter li.last {
    border-right: 0;
}
.goto.animated {
    border-top: 1px solid rgba(26, 26, 26, 0.30);
    border-bottom: 1px solid rgba(26, 26, 26, 0.30);
    padding: 50px 0;
    margin-top: 60px;
}
/* -------------------------counter CSS------------------------  */

.service-card {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 22px;
    height: 100%;
}
.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    padding: 14px 0 8px;
}
.service-card p {
    font-size: 16px;
    font-style: normal;
    line-height: 22px; /* 137.5% */
    opacity: 0.8;
}

section.sec-5 {
    background: rgba(42, 62, 165, 0.10);
    padding: 100px 0;
}
.testi-card {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 21px 14px 24px 20px;
    height: 100%;
}
.client-review span.name {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    display: block;
}
.client-review span.des {
    color: #1A1A1A;
    font-size: 12px;
    line-height: normal;
    opacity: 0.7;
}
.client-review {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.testi-card p {
    font-size: 18px;
    line-height: 24px; /* 133.333% */
    opacity: 0.8;
}








/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 50px;
    line-height: normal;
    padding-bottom: 10px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    /* margin: 1rem 0; */
    color: #1A1A1A;
    font-size: 18px;
    line-height: 24px; /* 133.333% */
}
.sec-heading .sub-heading {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--primary);
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 5px solid #2A3EA5;
    background: rgba(42, 62, 165, 0.08);
}
/* 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;
}
@keyframes pulseScale {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(101, 126, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(101, 126, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(101, 126, 255, 0);
  }
}

.btn-wrap .theme-btn {
  padding: 8px 9px 8px 24px;
  background: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  animation: pulseScale 2s infinite ease-in-out;
}

.btn-wrap .theme-btn.bordered {
  color: var(--primary) !important;
  border-radius: 200px;
  border: 1px solid #FFF;
  background: #FFF;
}
.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-sec p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    padding: 12px 0 30px;
}
.copyright-sec {
    background: #141414;
}
/* footer */


.port-card img {
    width: 100%;
    transition: 0.3s ease;
}


/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    max-height: 90vh;
  }
  .mmpopup {
    background: url("../images/popup-bg.webp");
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
    background-repeat: no-repeat;
  }
  .mmpopup .popup-content {
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    background: rgb(255 255 255 / 96%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.2px);
    -webkit-backdrop-filter: blur(4.2px);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .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: #659640;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
  }
  .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 #000000a8;
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    border: 4px solid var(--primary);
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 40px;
    border-radius: 5px;
    background: var(--primary);
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    padding: 61px 0 50px;
    background: #141414;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff24;
    padding: 20px 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 16px;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-heading,.error-text{font-weight:500;line-height:68px; color: #fff;}
.error-text{font-size:96px;color:#fff;margin-bottom:1.5rem}
.error-heading{font-size:52px}
.error-image{margin-top:100px}
.thankyou-text{font-size:20px;initial-letter:30;line-height:34px;margin-top:20px; color: #fff;}
.error-image img {filter: brightness(4.5);}
/* 404 */

/* terms */
.mainBanner.terms-page h1.banner-heading {
    padding: 100px 0;
}
.mainBanner.term-page h1.banner-heading {margin: 100px 0;}
.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}
ul.list-ul {list-style: disc;margin-left: 22px;font-weight: 500;}
/* terms */

.portfolio-page-nav {
  background: #000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999999;
}
.portfolio-page-nav .logo {
  max-width: 240px;
  /* margin: auto; */
}
.portfolio-page-nav .back-btn {
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.portfolio-viewframe {
  width: 100vw;
  min-height: 100dvh;
}
















@media (max-width: 1440px) {
     img.diamond-image {
        display: none;
    }
    .circle-image {
        display: none;
    }

}

@media (max-width: 1200px) {
    .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: center;
        padding: 1rem;
        padding: 4px 5px !important;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    .banner-content {
        padding: 35px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 18px;
        line-height: 29px;
    }
    .btn-wrap {
        gap: 8px;
    }
    .btn-wrap a {
        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;
    }
    .menuWrap2 {
        justify-content: end;
    }
    a.header-btn {
        padding: 4px 5px !important;
    }
    .header-btn.chatbtn {
        padding: 3px 5px 3px 14px !important;
    }
    ul.menu.btns {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    ul.menu > li > a {
        font-size: 13px;
    }
    .banner-content ul li {
        font-size: 18px;
        line-height: 24px;
        padding: 14px 0;
    }
    img.top-arrow {
        margin-left: 30%;
        margin-bottom: 2%;
    }
    img.bottom-arrow {
        margin-top: 0%;
    }
    section.sec-2 {
        padding: 65px 0 55px;
    }
    .chooseus-card {
        flex-direction: column;
        text-align: center;
        height: 100%;
    }
    ul#counter li .counter>div {
        font-size: 48.794px;
    }
    ul#counter li .counter span.text {
        font-size: 18.834px;
    }
    .goto.animated {
        padding: 14px 0;
        margin-top: 40px;
    }
    section.sec-3 {
        padding: 50px 0 36px;
    }
    ul.overview-nav {
        justify-content: center;
    }

}

@media (max-width : 1199px) {
    .banner-content {
        padding: 35px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 18px;
        line-height: 29px;
    }
    .btn-wrap {
        gap: 8px;
    }
    .btn-wrap a {
        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;
    }
    .menuWrap2 {
        justify-content: end;
    }
    a.header-btn {
        padding: 4px 5px !important;
    }
    .header-btn.chatbtn {
        padding: 3px 5px 3px 14px !important;
    }
    ul.menu.btns {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    ul.menu > li > a {
        font-size: 13px;
    }
    .banner-content ul li {
        font-size: 18px;
        line-height: 24px;
        padding: 14px 0;
    }
    img.top-arrow {
        margin-left: 30%;
        margin-bottom: 2%;
    }
    img.bottom-arrow {
        margin-top: 0%;
    }
    section.sec-2 {
        padding: 65px 0 55px;
    }
    .chooseus-card {
        flex-direction: column;
        text-align: center;
        height: 100%;
    }
    ul#counter li .counter>div {
        font-size: 48.794px;
    }
    ul#counter li .counter span.text {
        font-size: 18.834px;
    }
    .goto.animated {
        padding: 14px 0;
        margin-top: 40px;
    }
    section.sec-3 {
        padding: 50px 0 36px;
    }
    img.diamond-image {
        display: none;
    }
    .circle-image {
        display: none;
    }
    ul.overview-nav {
        justify-content: center;
    }

    
}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
    ul.overview-nav {
        justify-content: center;
    }
}

@media (max-width : 992px) {
    .banner-content {
        padding: 35px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap {
        gap: 8px;
    }
    .btn-wrap a {
        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;
    }
    .menuWrap2 {
        justify-content: end;
    }
    a.header-btn {
        padding: 4px 5px !important;
    }
    .header-btn.chatbtn {
        padding: 3px 5px 3px 14px !important;
    }
    ul.menu.btns {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    ul.menu > li > a {
        font-size: 13px;
    }
    .banner-content ul li {
        font-size: 14px;
        line-height: 24px;
        padding: 8px 0;
    }
    img.top-arrow {
        display: none;
    }
    img.bottom-arrow {
        display: none;
    }
    .banner-img-inner {
        width: 374px;
        height: 223px;
    }
    .banner-image {
        margin-top: 20px;
    }
    .circle-image {
        display: none;
    }
    .sec-1 {
        padding: 12px 0;
        background: #101840;
    }
    section.sec-2 {
        padding: 45px 0 50px;
    }
    ul.overview-nav {
        padding: 7px;
        width: auto;
        margin: 0 auto 30px;
        border-radius: 15px;
        justify-content: center;
    }
    ul.overview-nav a {
        padding: 8px 14px;
    }
    .portfolio-wrapper h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }
    .portfolio-wrapper h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }
    section.sec-3 {
        padding: 45px 0 40px;
    }
    .chooseus-card {
        flex-direction: column;
        text-align: center;
        height: auto;
        margin-bottom: 1rem;
    }
    .chooseus-text p {
        font-size: 14px;
    }
    ul#counter li .counter>div {
        font-size: 38.794px;
    }
    ul#counter li {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    ul#counter li .counter span.text {
        font-size: 17.834px;
    }
    .goto.animated {
        padding: 24px 0;
        margin-top: 22px;
    }
    section.sec-5 {
        padding: 36px 0;
    }
    .testi-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .testi-card {
        margin-bottom: 1rem;
        height: auto;
    }
    .footer-sec p {
        font-size: 14px;
        line-height: 18px;
        padding: 8px 0 10px;
    }
    footer {
        padding: 30px 0 24px;
    }
    .copyright p, .copyright a {
        font-size: 13px;
    }
    .mmpopup .popup-content {
        padding: 40px 20px 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 1.2;
    }
    .mmpopup .formpop {
        margin-top: 22px;
    }
    .portfolio-wrapper {
        border-radius: 20px;
        padding: 15px 15px;
        margin-bottom: 18px;
    }
    .service-card p {
        font-size: 14px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    br {
        display: none;
    }
    .mainBanner.terms-page h1.banner-heading {
        padding: 50px 0;
        text-align: center;
        align-items: center;
    }
    .terms p {
        font-size: 14px;
    }
    ul.list-ul li {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 18px;
    }
    .terms p {
        margin-bottom: 1rem;
    }
    .terms h4 {
        font-size: 18px;
    }
    .main-header {
        padding-top: 5px;
    }


}

@media only screen and (min-width : 768px) and (max-width : 991px) {
    img.diamond-image {
        display: none;
    }
    .banner-image {
        display: none;
    }

}



@media only screen and (min-width : 280px) and (max-width : 767px) {
    .banner-content {
        padding: 35px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap {
        gap: 8px;
    }
    .btn-wrap a {
        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;
    }
    .menuWrap2 {
        justify-content: center;
    }
    a.header-btn {
        padding: 4px 5px !important;
    }
    .header-btn.chatbtn {
        padding: 3px 5px 3px 14px !important;
    }
    ul.menu.btns {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    ul.menu > li > a {
        font-size: 13px;
    }
    .banner-content ul li {
        font-size: 14px;
        line-height: 24px;
        padding: 8px 0;
    }
    img.top-arrow {
        display: none;
    }
    img.bottom-arrow {
        display: none;
    }
    .banner-img-inner {
        width: 278px;
        height: 200px;
    }
    .banner-image {
        margin-top: 20px;
    }
    .circle-image {
        display: none;
    }
    .sec-1 {
        padding: 12px 0;
        background: #101840;
    }
    section.sec-2 {
        padding: 45px 0 50px;
    }
    ul.overview-nav {
        padding: 7px;
        width: auto;
        margin: 0 auto 30px;
        border-radius: 15px;
        justify-content: center;
    }
    ul.overview-nav a {
        padding: 8px 14px;
    }
    .portfolio-wrapper h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }
    .portfolio-wrapper h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }
    section.sec-3 {
        padding: 45px 0 40px;
    }
    .chooseus-card {
        flex-direction: column;
        text-align: center;
        height: auto;
        margin-bottom: 1rem;
    }
    .chooseus-text p {
        font-size: 14px;
    }
    ul#counter {
        flex-direction: column;
    }
    ul#counter li .counter>div {
        font-size: 38.794px;
    }
    ul#counter li {
        text-align: center;
        align-items: center;
        justify-content: center;
        border-right: 0;
    }
    ul#counter li .counter span.text {
        font-size: 17.834px;
    }
    .goto.animated {
        padding: 24px 0;
        margin-top: 22px;
    }
    section.sec-5 {
        padding: 36px 0;
    }
    .testi-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .testi-card {
        margin-bottom: 1rem;
        height: auto;
    }
    .footer-sec p {
        font-size: 14px;
        line-height: 18px;
        padding: 8px 0 10px;
    }
    footer {
        padding: 30px 0 24px;
    }
    .copyright p, .copyright a {
        font-size: 13px;
    }
    .mmpopup .popup-content {
        padding: 40px 20px 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 1.2;
    }
    .mmpopup .formpop {
        margin-top: 22px;
    }
    .portfolio-wrapper {
        border-radius: 20px;
        padding: 15px 15px;
        margin-bottom: 18px;
    }
    .service-card p {
        font-size: 14px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    br {
        display: none;
    }
    .mainBanner.terms-page h1.banner-heading {
        padding: 50px 0;
        text-align: center;
        align-items: center;
    }
    .terms p {
        font-size: 14px;
    }
    ul.list-ul li {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 18px;
    }
    .terms p {
        margin-bottom: 1rem;
    }
    .terms h4 {
        font-size: 18px;
    }
    img.diamond-image {
        display: none;
    }








}