/*Main Css */
:root {
    --primary: #5B7FFF;
    --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: "Inter", 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;
    scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: smooth !important;
}
html {
    overflow-x: hidden;
}
::selection {
    background: var(--primary);
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: var(--primary);
}


/* Tabbing CSS */

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

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


/* Accordian */

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

.accordion-list {
    position: relative
}

.accordion-list>li {
    padding: 20px 0;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    /* margin-bottom:1.5rem; */
    color: #333333;
    transition: .5s ease;
    background: transparent;
    border-bottom: 1px solid #DEDEDE;
}

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

.accordion-list li h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

ul.accordion-list li h3:after {
    content: "\2b";
    font-family: var(--icon);
    transition: all .3s ease-in-out;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    content: "\f078";
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}

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

.answer p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
}

.answer ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: disc;
    padding-left: 1rem;
    margin-top: 1rem;
}

.accordion-list .answer li span {
    font-size: 20px;
    font-weight: 500;
}

.accordion-list>li.active {
    color: #222;
}

/* Accordian */
html {
    overflow-x: hidden;

}

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

body.inner-header {
    padding-top: 100px;
}

.main-header {
    padding: 10px 0;
}

.ovr-hiddn {
    overflow: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
}

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

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

a,
input[type="submit"],
button[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 */




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






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;
    background: transparent;
    z-index: 1;
    border-bottom: 1px solid #ddd;
    background: white;
}



.top-bar-wrap {
    background: #222;
    backdrop-filter: blur(9px);
    transition: .5s ease;
}
.top-bar-wrap.sticky{
    position: sticky;
    top: 0;
    z-index: 1;
    backdrop-filter: blur(9px);
    /* background: #2222227a; */
}
.top-bar-wrap.sticky a{
    font-size: 16px;
}
 .top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
    gap:1.5rem;
}

 .top-bar a {
    color: white
}
.phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 20px;
}

.phone i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 100px;
    font-size: 14px;
}


.pulse {
    animation: pulseWhite 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(230, 255, 255, 0.7);
}

.pulse-dark {
    animation: pulsedark 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(230, 255, 255, 0.7);
}

@keyframes pulseWhite {
    0% {
        /*transform: scale(1); */
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        /*transform: scale(1.02); */
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        /*transform: scale(1); */
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulsedark {
    0% {
        /*transform: scale(1); */
        box-shadow: 0 0 0 0 rgba(96, 107, 255, 0.5);
    }

    70% {
        /*transform: scale(1.02); */
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        /*transform: scale(1); */
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}

.logo {
    display: inline-block;
}

.logo img {
    display: block;
    max-width: 150px;
}


/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

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

.menu-Bar span:nth-child(3) {
    top: 16px;
}



.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}


/* Menu Css */

.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu>li {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}

.menu>li>a {
    display: block;
    font-size: 16px;
    color: var(--black);
    /* text-transform: uppercase; */
}

.header-btn {
    color: #0B0B0B;
    padding: 20px;
    border-radius: 8px;
    border-radius: 0;
    background: var(--primary);

    /* shadow/sm */
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    font-size: 20px;
}

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



/* Main Banner CSS */

.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.banner-content .trusted-img img {
    margin-top: 1rem;
    height: 70px;
}

.mainBanner::before {
    content: "";
    background: url("../images/shapes/15.svg") no-repeat center center;
    background-size: cover;
    position: absolute;
    width: 200px;
    height: 200px;
    left: -40px;
    top: -40px;
    z-index: -1;
    animation: float1 20s ease infinite alternate;
}

.mainBanner::after {
    content: "";
    background: url("../images/shapes/6.svg") no-repeat center center;
    background-size: cover;
    position: absolute;
    width: 150px;
    height: 150px;
    right: 0;
    bottom: 0;
    z-index: -1;
    animation: float2 15s ease infinite alternate;
}
@keyframes float1 {
  0% { transform: translate(0, 0); }
  25% { transform: translate(80px, 30px); }
  50% { transform: translate(-40px, 60px); }
  75% { transform: translate(60px, -20px); }
  100% { transform: translate(0, 0); }
}

@keyframes float2 {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-50px, 40px); }
  40% { transform: translate(70px, 80px); }
  60% { transform: translate(-30px, -60px); }
  80% { transform: translate(50px, -30px); }
  100% { transform: translate(0, 0); }
}

@keyframes float3 {
  0% { transform: translate(0, 0); }
  30% { transform: translate(60px, -40px); }
  60% { transform: translate(-70px, 50px); }
  100% { transform: translate(0, 0); }
}
.banner-content {
    padding: 50px 0;
}

h1.banner-heading {
    font-size: 43px;
    line-height: 55px;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1.banner-heading span {
    /* background: var(--primary); */
    padding: 5px 10px;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-size: 24px;
    line-height: 34px;
}

ul.banner-list {
    font-size: 18px;
    line-height: 30px;
    list-style: disc;
    color: #0B0B0B;
    padding-left: 18px;
}

span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}

p.banner-text {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 1rem;
    color: #0B0B0B;
}
p.banner-text span {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}
.header-btn.bordered {
    background: transparent;
    border: 1px solid #31edbb;
}

.mainBanner.no-img {
    padding: 50px 0;
}

.mainBanner.no-img::before {
    content: none;
}

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

.trusted-img img {
    flex-shrink: 1;
    /* width: 100px; */
    height: 80px;
}

ul.trusted-list {
    display: flex;
    gap: 1rem;
    padding: 0 15px;
}



.port-card {
    margin-bottom: 1.5rem;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 31%;
    margin: 2rem auto 0;
    color: #0B0B0B;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
}

/* popup */

.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
}

.popupmain {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 600px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width: 97%;
    max-height: 90vh;
    overflow-y: auto;
}

.mmpopup {
    text-align: center;
    /* background: #f8f8f8; */
    /* padding: 45px 25px 25px; */
}

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

.mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    overflow: hidden;
}

.mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
}

.mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
}

.mmpopup .centercont h4 span {
    color: #86cb92;
}

.mmpopup .centercont h4 span span {
    display: none;
}

.mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
}

.mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 24px;
    color: #232323;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
    letter-spacing: -0.48px;
}

.mmpopup .centercont h4 {
    font-size: 35px;
    color: #40ecbd;
}

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

.mmpopup .centercont h3 span {
    display: block;
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: #3A3D40;
    letter-spacing: -0.9px;
}

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

.pop-field input,
.pop-field textarea,
.newcountrycode.popup {
    border-radius: 2px;
    border: 1px solid #F0F0F0;
    background: #FAFAFA;
    padding: 1rem;
    width: 100%;
    margin-bottom: 8px;
}

.closeico {
    position: absolute;
    font-size: 16px;
    width: 30px;
    height: 30px;
    background: #f2f2f2;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
    top: 10px;
    color: #212121;
    z-index: 1;
}

.newcountrycode.popup {
    height: 54px;
}

.popupmain button {
    border-radius: 6px;
    background: var(--primary);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border: 0;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    padding: 20px;
    margin: 0;
    color: white;
}

.cust-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.cust-row .content {
    background: white;
    display: flex;
    padding: 40px 20px 20px;
    flex-direction: column;
    justify-content: center;
}

.cust-row .img {
    display: flex;
}

.cust-row .img img {
    object-fit: cover;
}

.mmpopup .centercont ul {
    display: flex;
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
    color: #333333;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    font-size: 14px;
    line-height: normal;
}

.mmpopup .centercont ul li {
    display: flex;
    gap: 5px;
    position: relative;
    align-items: start;
}


.mmpopup .centercont ul li::before {
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: #3aecbe;
    content:
        "\f14a";
    /* margin-top: 2px; */
    font-size: 18px
}

/* popup */




/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}

.sec-heading.center {
    text-align: center;

}

.sec-heading h2 {
    font-size: 40px;
    line-height: 48px;
}

.sec-heading.white h2,
.sec-heading.white p {
    color: white
}

.sec-heading p {
    font-size: 18px;
    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-heading h2 span {
    color: var(--primary);
    font-weight: 600;
    display: block;
}

/* Sec Headings */


/* sections */
section {
    padding: 4rem 0;
    position: relative;
}

.padding-2 {
    padding: 1rem 0;
}

/* sections */


/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.btn-wrap .theme-btn {
    padding: 20px 30px;
    background: var(--primary);
    color: #fff;
    font-size: 17px;
    font-weight: var(--font-medium);
    border: 2px solid var(--primary);
    transition: .5s ease;
    position: relative;
    /* background: linear-gradient(117deg, #18EBBE 0%, #9AF3AF 100%); */
    white-space: nowrap;

    /* shadow/sm */
    /* box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); */
    /* border: 2px solid #5fefb5; */
    border-radius: 100px;
}

.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: #0b0b0b;
    border: 2px solid #5FEFB5;
}

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

.btn-wrap .theme-btn.dark {
    background: var(--primary);
    /* box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); */
    color: white;
    /* border: 2px solid #00795d; */
}

.btn-wrap .theme-btn.dark.bordered {
    background: transparent;
    color: #0B0B0B;
    /* border-color: #00795d; */
    border: 2px solid var(--primary);
}

/* Theme Buttons */


/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}

.newcountrycode select {
    width: 45px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.newcountrycode .countrycode {
    width: 50px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}

.newcountrycode .phone-field {
    width: 100%;
    background: transparent;
}

.newcountrycode input {
    border: 0;
}

/* Country Code */


/* footer */

footer {
    background: #030E1A;
    padding: 1.5rem 0;
}

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

.copyright p,
.copyright a {
    color: white;
}

.copyright ul {
    display: flex;
    gap: 1rem;
}

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



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


/* terms */

.single-item {
    width: 100%;
    height: 300px;
}

.single-item .slide {
    width: 300px;
    height: 300px;
    font-size: 50px;
    color: red;
    background: #ccc;
    float: left;
}



.checkbox-wrap2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-bottom: 15px;
    width: 100%;
    flex-direction: row;
}

.checkbox-wrap2 input {
    margin-top: 4px;
    width: auto !important;
}

.checkbox-wrap2 label {
    line-height: 1.3;
    font-size: 12px;
}


/* Choose-card  */
.bg-1 {
    background: #f8f8f8;
}

.bg-primary {
    background: var(--primary);
}

.reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 31%;
    margin: 2rem auto 0;
    color: #0B0B0B;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
}


ul.counter-wrap {
    display: flex;
    align-items: center;
}

ul.counter-wrap li {
    padding: 0 20px;
    flex: 1;
    color: white;
    text-align: center;
}

ul.counter-wrap li .count {
    font-size: 50px;
    font-weight: 600;
}

ul.counter-wrap li:not(:last-child) {
    border-right: 1px solid #fff;
}

ul.counter-wrap li p {
    font-size: 18px;
    margin-top: 10px;
}

.choose-card {
    border-radius: 4px;
    background: #FFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    height:100%;
    border: 1px solid #C2C2C2;
    border-radius: 20px;
    transition: .5s ease;
}

.choose-card img {
    /* height: 70px; */
}

.choose-card h3 {
    font-size: 20px;
    line-height: 32px;
    /* 145.455% */
    letter-spacing: -1.1px;
}

.choose-card p {
    line-height: 30px;
    color: #555;
}


.choose-card span {
    background: #212121;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.choose-card span img {
    filter: invert(1);
}

.choose-card:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.choose-card:hover span {
    background: white;
}

.choose-card:hover span img {
    filter: invert(0);
}

.choose-card:hover * {
    color: white;
}

/* Choose-card  */


/* Process-card */
.process-card {
    display: flex;
    border-radius: 20px;
    background: #F7F7F7;
    margin-bottom: 1.5rem;
    min-height: 370px;
    transition: .5s ease;
    position: relative;
}

.process-card>span {
    background: var(--primary);
    display: flex;
    align-items: end;
    padding: 21px;
    font-size: 30px;
    font-weight: 600;
    line-height: 24px;
    width: 80px;
    flex-shrink: 0;
    color: white;
    display: none;
}

.process-card .content span {
    background: #212121;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: .5s ease;
}
.process-card:hover .content span{
    background: var(--primary);
}
.process-card .content span img {
    filter: invert(1);

}

.process-card .content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 1rem;
}

.process-card .content h3 {
    font-size: 20px;
    line-height: 40px;
    /* 153.846% */
    letter-spacing: -1.3px;
}

.process-card .content p {
    line-height: 24px;
    color: #555555;
}
.process-card:before {
    content: "";
    background: var(--primary);
    width: 99%;
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 23px;
    height: 99%;
    z-index: -1;
    transition: .5s ease;
}

.process-card:hover:before {transform: rotate(5deg);}

.process-card:hover {
    box-shadow: 3px 3px 10px #00000024;
}
/* Process-card */

/* Cta */
section.cta {
    background: var(--primary);
    color: white;
    /* margin-top: 100px; */
    padding: 0;
}

a.theme-btn.bordered.white {
    border-color: white;
    color: white;
}

.btn-wrap .theme-btn.white:not(.bordered) {
    background: white;
    color: #212121;
    border-color: white;
}

.cta span,
.cta span a {
    /* font-size: 20px; */
    font-weight: 500;
    color: white;
}

.cta span {
    display: inline;
    gap: 10px;
    color: white !important;
}

section.cta .cta-content {
    padding: 4rem 0;
}
/* Cta */



/* Testimonials */
/* Testimonials */
.testimonials {
    background: #002C4F;
    position: relative;
    /* color: white; */
    padding-bottom: 100px;
    overflow: hidden;
}

.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: #fff;
    padding: 25px;

    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;

    transition: .5s ease;
}

.testi-card p {
    /* font-weight: 500; */
    font-size: 18px;
    line-height: 30px;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    max-height: 315px;

    overflow-y: auto;
    text-align: left
}

.testi-card .client {
    gap: 10px;
    display: flex;
    align-items: center;
}

.testi-card .client .det .name {
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.testi-card .client .det .des {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #555555;
    letter-spacing: -0.03em;
}

.testi-card .client .det {
    display: flex;
    flex-direction: column;
}

.testi-card:hover .qoute {
    box-shadow: 3px 3px 10px #00000030;
    background: #212121;
}

.testi-card:hover {
    transform: scale(1.05);
}

.testi-slider .slick-track {
    padding: 20px 0;
}

.qoute {
    background: var(--primary);
    /* box-shadow: 8px 8px 0px #092dac; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    transition: .5s ease;
}



.testi-card .client img {
    width: 72px;
    border-radius: 100%;
}

/* Testimonials */



ul.services-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* padding: 20px; */
    justify-content: center;
}

ul.services-card img {
    width: 50px;
    filter: brightness(0.5);
}

ul.services-card p {
    font-size: 16px;
}

ul.services-card li {
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 5px 5px 10px #0000001f;
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

ul.services-card li:hover {
    background: var(--primary);
    color: white;
}

ul.services-card li:hover img {
    filter: invert(1);
}


.slick-slide {
    margin: 0 15px;
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.slider-arrows a {
    background: #E9EBF2;
    width: 55px;
    height: 55px;
    color: #4D4E53;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Testimonials */
/* banner-form */
form.banner-form {
    border-radius: 4px;
    /* border: 2px solid #E3E3E3; */
    background: #FFF;
    padding: 20px;
    box-shadow: 5px 5px 10px #00000026;
    border-radius: 20px;
    position: relative;
}

form.banner-form:before {
    content: "";
    width: 120px;
    height: 97px;
    background: url("../images/shapes/2.svg") no-repeat center center;
    background-size: cover;
    position: absolute;
    right: -70px;
    top: 50px;
    z-index: -1;
      animation: float3 25s ease infinite alternate;
}

.banner-form .field input,
.banner-form .newcountrycode,
.banner-form .field textarea {
    width: 100%;
    padding: .5rem;
    border-radius: 0;
    border: 1px solid rgba(85, 85, 85, 0.33);
    min-height: 50px;
}

.banner-form h3 {
    font-size: 30px;
    line-height: 40px;
    /* 100% */
    /* letter-spacing: -2px; */
    color: #0B0B0B;
    text-align: center;
    margin-bottom: 1.5rem;
}

.banner-form .submit {
    background: var(--primary);
    width: 100%;
    padding: 20px;
    border: 0;
    border-radius: 100px;
    font-size: 22px;
    font-weight: 500;
    /* 276.923% */
    letter-spacing: -1.3px;
    transition: .5s ease;
    color: white;
}

.banner-form .submit:hover {
    transform: scale(1.03);
}

/* banner-form */

.package-responsive {
    display: none;
}

.services{
    
padding-bottom: calc(4rem + 150px);
}
section.cta .img-wrap {
    position: relative;
    display: block;
    display: flex;
    align-items: end;
    height: 100%;
}

section.cta .img-wrap img {
    position: absolute;
    bottom: 0;
    /* top: -360px; */
    width: 80%;
}



.cta-sec {
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;

    background: url("../images/cta-2.webp")no-repeat;
    border-radius: 30px;
}
.cta-sec form.banner-form:before {
    content: none;
}
.cta-sec span, .cta-sec a {
    color: white;
}


.submit {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submit.loading {
  pointer-events: none;
  color: transparent;
}

.submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  margin-left: -11px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.submit.success {
  background-color: #28a745 !important;
  color: #fff !important;
}

.submit.success::after {
  content: "âœ”";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pop 0.3s ease-out;
}

@keyframes pop {
  0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
  80% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); }
}

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

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


    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }

    .form-head .form-heading {
        white-space: normal;
        font-size: 20px;
    }

    .form-head {
        padding: 1rem;
    }

    .btn-normal {
        padding: 10px 8px;
    }

    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }

    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }

    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }

    .menuWrap .menu:first-child {
        padding-left: 0;
        width: 100%;
    }

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

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

    .menuWrap.open {
        display: flex;
        left: 0px;
    }

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

    ul.menu>li {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }

    ul.menu>li>a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }

    .container {
        position: relative;
    }

    header .main-header ul.menu>li>a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }

    header .main-header ul.menu>li>a:before {
        display: none;
    }

    ul.menu.btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    a.header-btn {
        text-align: center !important;
        justify-content: center !important;
    }

    ul.menu.btns li {
        border-bottom: 0;
    }
}

@media (max-width : 1025px) {
    .btn-wrap .theme-btn {
        font-size: 16px;
    }

    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }

    .table th .price .del span {
        white-space: nowrap;
    }

    .reviews {
        width: 53%;
    }

    section, section.cta .cta-content  {
        padding: 2rem 0;
    }

}

@media (max-width : 1023px) {


    .cust-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .cust-row .img {
        display: none;
    }

    .mmpopup .centercont ul {
        display: flex;
    }
section.cta .img-wrap {
    display: none;
}
}

/* 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 */
    .mainBanner::before {
        content: none;
    }

    section, section.cta .cta-content  {
        padding: 2rem 0;
    }




}


/* 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 : 320px) and (max-width : 767px) {
    ul.services-card li {
        /* min-width: auto; */
        width: 150px;
        white-space: normal;
        min-width: auto;
        text-align: center;
        justify-content: space-between;
    }

    section.cta .img-wrap {
        display: none;
    }

    .mmpopup .centercont ul {
        display: grid;
        font-size: 12px;
    }

    .slider-arrows {
        justify-content: center;
    }

    header {
        padding: 1rem 0;
    }

    .banner-content {
        padding: 40px 0 20px;
    }

    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }

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

    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }

    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .btn-wrap a {
        width: 100%;
        text-align: center;
    }

    .banner-img {
        display: none;
    }

    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }

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

    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }

    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    .mainBanner::before {
        content: none;
    }





    section, section.cta .cta-content  {
        padding: 1rem 0;
    }

    .reviews {
        width: 100%;
        margin: 0;
    }

    .process-card {
        flex-direction: column;
    }

    .table th .price span {
        white-space: nowrap;
    }

    .testi-card .client .det .name {
        font-size: 22px;
    }

    .testi-card .client .det .des {
        font-size: 14px;
    }

    .testi-card .client img {
        max-width: 60px;
    }

    .testi-card p {
        font-size: 16px;
        line-height: 26px;
    }

    .testi-card {
        padding: 20px;
        min-height: auto;
    }

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

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

    form.banner-form {
        padding: 20px;
    }

    form.banner-form h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cta span,
    .cta span a {
        font-size: 16px;
    }

    .choose-card {
        min-height: auto;
    }
    ul.counter-wrap {
        flex-direction: column;
    }
    ul.counter-wrap li {
        width: 100%;
        border-right: 0 !important;
        border-bottom: 1px solid #fff;
        padding: 20px 0;
    }
    .sec-heading h2 span {
        display: inline;
    }
    
    .cta-sec span {
    text-align: center;
    line-height: 25px;
}

.cta-sec {
    background: var(--primary);
    padding: 1.5rem;
}

.services {
    padding-bottom: initial;
}

.cta span {
    text-align: center;
    display: block;
}

.trusted-img.justify-content-center.mt-4 {
    flex-wrap: wrap;
}
.trusted-img {
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    justify-content: center;
}
}   