/*Main Css */
:root {
    --primary: #315EFF;
    --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;
}

::selection {
    background: #ff5e14;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #ff5e14;
}


/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}


/* Accordian */


.accordion-list {
    position: relative;
}

.accordion-list li {
    padding: 30px 0;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    background: white;
    /* box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05); */
    border-top: 1px solid #333;
}

ul.accordion-list li span {
    display: flex;
    position: relative;
}

.accordion-list li h3 {
    font-size: 24px;
    color: #333;
    font-style: normal;
    font-weight: 600;
    font-size: max(18px, min(4vw, 24px));
    line-height: max(28px, min(5vw, 32px));
    display: flex;
    width: 100%;
    gap: 1rem;
    justify-content: space-between;
}

ul.accordion-list li h3:after {
    content: "\e093";
    font-family: var(--icon);
    /* position: absolute; */
    right: 0;
    right: 0;
    color: #333;
    transition: all 0.3s ease-in-out;
    font-size: 24px;
    font-weight: 600;
    top: 0;
}

.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\e09f";
}

ul.accordion-list li.active h3:after {
    content: "\e09f";
}

.answer p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
}

/* Accordian */

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}

body.inner-header {
    padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: var(--font-heading);
}

*: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 5px;
}

.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: fixed;
    background: #3d5dfc;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    /* border-bottom: 1px solid #ddd; */
    padding: 1rem 0;
    backdrop-filter: blur(7px);
}

header.sticky {
    background: #3d5dfce8;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}

.logo {
    display: inline-block;
}

.logo img {
    display: block;
    max-width: 120px;
}


/* 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: #fff;
    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: #ffffff;
    /* text-transform: uppercase; */
    font-weight: 500;
}

.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 15px 20px;
    border-radius: 100px;
    font-weight: 400 !important;
}

.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;
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333 !important;
    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;
}

.mainBanner::before {
    content: "";
    width: 50%;
    height: 100%;
    background: url("../images/ban.webp") no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    left: -4%;
}
span.elem {
    position: absolute;
}

span.elem.e2 {
    right: 100px;
    bottom: 100px;
}

span.elem.e1 {
    left: 100px;
    bottom: 60px;
}
.trusted-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.trusted-sec {
    padding: 2rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.banner-content {
    padding: 150px 0 50px;
}

.mainBanner.inner .banner-content {
    padding: 200px 0 150px;
}


.mainBanner.no-banner {
    height: 80px;
}

.mainBanner.no-banner::before {
    content: none;
}

h1.banner-heading {
    font-size: max(28px, min(4vw, 60px));
    line-height: max(40px, min(5vw, 80px));
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -1.8px;
}
.mainBanner.dark h1.banner-heading {
    font-weight: 500;
}
h1.banner-heading span {
    color: #FFC727;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}

p.banner-text {
    font-weight: 500;
    font-size: max(16px, min(4vw, 18px));
    line-height: max(28px, min(5vw, 30px));
    margin-bottom: 2rem;
    color: #555555;
}

.banner-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img img {
    width: 100%;
}

.banner-img img:first-child {
    z-index: 1;
}

.banner-img img:last-child {
    position: absolute;
    right: -20%;
    width: 80%;
}


.mainBanner.dark {
    background: #08144b;
}
.mainBanner.dark  * {
    color: white;
}


.search-wrap {
    border-radius: 50px;
    /* border: 1px solid #315EFF; */
    background: #FFF;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

.search-wrap a {
    width: 75px;
    height: 75px;
    background: #315EFF;
    border-radius: 100%;
    flex-shrink: 0;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrap input {
    width: 100%;
    border: 0;
    padding: 0 30px;
    color: #333 !important;
}

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}

.sec-heading.center {
    text-align: center;

}

.sec-heading h2 {
    font-size: max(26px, min(4vw, 50px));
    line-height: max(36px, min(6vw, 60px));
    font-weight: 600;
}

.sec-heading.white h2,
.sec-heading.white p {
    color: white
}

.sec-heading p {
    font-size: max(16px, min(4vw, 18px));
    line-height: max(26px, min(5vw, 30px));
    color: #5F5F5F;
    margin: 1rem 0;
    letter-spacing: -0.54px;
}

.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sec-heading.sm h2 {
    font-size: max(26px, min(4vw, 35px));
    line-height: max(36px, min(5vw, 45px));
}

/* Sec Headings */


/* sections */
section {
    padding: 4rem 0;
    position: relative;
}

.padding-2 {
    padding: 1rem 0;
}

/* sections */


/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.btn-wrap .theme-btn {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    font-size: 20px;
    border-radius: 100px;
    font-weight: var(--font-medium);
    border: 2px solid var(--primary);
    transition: .5s ease;
}

.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}

.btn-wrap .theme-btn:hover {
    transform: scale(1.03);
}

a.theme-btn.c2 {
    background: #FFC727;
    color: #333333;
    border-color: #FFC727;
}

/* 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: 3rem 0 1.5rem;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 0;
    margin-top: 2rem;
    border-top: 1px solid #ddd;
}

.copyright p,
.copyright a {
    /* color: white; */
    text-align: center;
    margin: 0;
}

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 p,
footer a {
    color: #555;
    font-weight: 400;
    line-height: 28.8px;
    /* 180% */
}

footer p {
    margin-top: 1rem;
}

footer span.hdng {
    color: #111;
    font-size: 22px;
    font-weight: 600;
    line-height: 33.6px;
    /* 152.727% */
}

footer .f-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

/* footer */



/* Portfolio  */


.port-card {
    margin-bottom: 1.5rem;
}

.port-card img,
.port-card a {
    width: 100%;
}

/* Portfolio */
/* 404 */
.message h2 {
    font-size: 230px;
    font-weight: 700;
    line-height: 240px;
    letter-spacing: -7.8px;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.message h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    /* 125% */
}

.message p {
    color: #555;
    font-size: 18px;
    line-height: 30px;
    /* 172.062% */
}

/* 404 */
/* terms */



.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul ul {
    padding-left: 1rem;
    font-size: 14px;
    list-style: disc;
}
.terms ul li {
    margin-bottom: 1rem;
}

.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}

.terms h4 {
    font-size: 28px;
    margin: 1rem 0;
}

.terms p {
    margin-bottom: 1rem;
    line-height: 30px;
}

/* terms */

section.about-sec {
    background: #315EFF;
    padding: 0 !important;
}

section.about-sec::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: 0;
    bottom: 0;
    background: url("../images/elem.webp") no-repeat;
    background-size: contain;
}

section.about-sec .img {
    width: 960px;
    display: flex;
}


ul.about-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

ul.about-list li .hdng {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    /* 136.364% */
    letter-spacing: -0.66px;
    margin-bottom: 10px;
}

ul.about-list li p {
    line-height: 30px;
    /* 187.5% */
    letter-spacing: -0.48px;
}

section.about-sec.white {
    background: white;
}

ul.about-list.white {
    color: #333333;
}

section.services-sec {
    background: #07133D;
}

ul.accordion-list.d2 li {
    background: transparent;
    border: 0;
    border-top: 1px solid #fff;
    border-radius: 0;
    padding: 20px 0;
    margin: 0;
}

.accordion-list.d2 li h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    /* 125% */
    letter-spacing: -0.72px;
}

.accordion-list.d2 .answer p {
    color: #FFF;
    font-size: 16px;
    line-height: 30px;
    /* 187.5% */
}

ul.accordion-list.d2 li h3:after {
    content: none;
}

.img-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-card a.service-link {
    border-radius: 50px;
    border: 1px solid #FFF;
    background: linear-gradient(97deg, rgba(255, 255, 255, 0.40) 7.12%, rgba(255, 255, 255, 0.16) 91.77%);
    position: absolute;
    z-index: 1;
    width: 60%;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    align-items: center;
    bottom: 60px;
    overflow: hidden;
}

.img-card a.service-link::after {
    content: "";
    width: 0px;
    height: 100%;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0;
    top: 0;
    transition: .5s ease;
    background: #13ec84;
    z-index: -1;
    border-radius: 100px;
}

.img-card a.service-link:hover:after {
    width: 100%;
}

.img-card a.service-link:hover {
    color: #333;
}

.img-card a.service-link span {
    display: flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    /* background: #13EC84; */
    font-size: 22px;
    color: #333;
    /* border: 1px solid #FFF; */
}

.img-card a,
.img-card img {
    display: flex;
    width: 100%;
}

section.p-0 .container-fluid {
    padding: 0;
}

.img-card:hover img {
    transform: scale(1.2) rotate(5deg);
    filter: grayscale(0);
}

.img-card img {
    transition: .5s ease;
    filter: grayscale(1);
}




.testi-card .client {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-card .client .det {
    display: flex;
    flex-direction: column;
}

.testi-card .client .det .name {
    font-size: max(18px, min(4vw, 26px));
    font-weight: 100;
    line-height: max(28px, min(5vw, 40px));
    /* 166.667% */
    letter-spacing: -0.9px;
}

.testi-card .client .det .des {
    font-size: max(16px, min(4vw, 20px));
    font-weight: 400;
    line-height: max(28px, min(5vw, 40px));
    /* 208.333% */
    letter-spacing: -0.72px;
}

.testi-card p {
    font-size: max(18px, min(4vw, 20px));
    font-style: normal;
    font-weight: 500;
    line-height: max(30px, min(5vw, 40px));
    /* 166.667% */
    letter-spacing: -0.9px;
    font-family: var(--font-heading);
}

.testi-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    color: white;
    padding-right: 20px;
}
.testi-slider .slick-slide {
    margin: 0 15px;
}


section.testimonial-sec {
    z-index: 0;
    background: #04144C;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.arrows {
    display: flex;
    align-items: center;
    /* gap: 1px; */
    justify-content: end;
}

.arrows a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}



.arrows a:hover {
    background: white !important;
    color: #333;
}




.value-card {
    border: 1px solid #555;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: max(20px, min(5vw, 80px));
    color: #333;
    min-height: 300px;
    /* justify-content: center; */
}

.value-card h3 {
    font-size: max(18px, min(4vw, 22px));
    font-weight: 600;
    line-height: max(24px, min(5vw, 30px));
    /* 136.364% */
    letter-spacing: -0.66px;
}

.value-card p {
    line-height: max(24px, min(5vw, 30px));
    letter-spacing: -0.48px;
}




section.counter-sec {
    background: #07133D;
}

ul.counter-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

ul.counter-list li {
    border: 1px solid #FFF;
    background: linear-gradient(97deg, rgba(255, 255, 255, 0.40) 7.12%, rgba(255, 255, 255, 0.16) 91.77%);
    padding: 30px;
}

ul.counter-list li .counter div {
    color: #13D176;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    /* 125% */
}

ul.counter-list li .counter p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}



.sec-heading.lg h2 {
    font-size: max(26px, min(4vw, 60px));
    line-height: max(36px, min(5vw, 80px));
    letter-spacing: -1.8px;
    font-weight: 600;
}

.contact-sec h3 {
    font-size: max(20px, min(4vw, 34px));
    line-height: max(30px, min(5vw, 40px));
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-sec input, .contact-sec textarea,.contact-sec select {
    border-radius: 6px;
    border: 1px solid #fff;
    background: transparent;
    padding: 18px;
    font-size: 18px;
    width: 100%;
    color: white;
}

.contact-sec .submit {
    background: var(--primary);
    padding: 18px;
    width: 100%;
    border-radius: 100px;
    border: 0;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.has-elem::before {
    content: "";
    width: 50%;
    height: 100%;
    background: url("../images/ban.webp") no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    left: -4%;
    top: 0;
}
form.contact-form {
    background: #04144C;
    padding: 40px;
    color: white;
}

form.contact-form label {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: start;
}

form.contact-form label input {
    flex-basis: 10px;
    background: transparent;
}

form.contact-form label {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.contact-sec select option {
    color: #333;
    font-size: 14px;
}
.cotact-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cotact-detail a {
    color: #555;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cotact-detail a i {
    color: #111827;
}

section.cta-sec {
    background: #315EFF;
    margin-top: 70px;
}
section.cta-sec .btn-wrap {
    margin-bottom: 0;
}
section.cta-sec .img {
    position: absolute;
    bottom: 0;
    width: 20%;
    display: flex;
}

section.cta-sec .img img {
    width: 100%;
}

.strategy-card h3 {
    color: #333;
    font-size: 30px;
    font-weight: 600;
    line-height: 26px; /* 85% */
    letter-spacing: 0.34px;
    margin-bottom: 1.5rem;
}

.strategy-card p {
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    letter-spacing: 0.34px;
}

.strategy-card {
    padding: 0 0 1.5rem;
    border-bottom: 1px solid;
}

.number-lg span {
    background: var(--path)  no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 200px;
    font-weight: 600;
    line-height:  200px;
    letter-spacing: 0.687px;
    background-size: cover;
    background-position: center;
    font-family: var(--font-heading);
}

.service-card .content {
    position: absolute;
    z-index: 1;
    color: white;
    width: 100%;
    bottom: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card {
    padding: revert;
    display: flex;
    flex-direction: column;
    z-index: 0;
    position: relative;
}

.service-card .content h3 {
    font-size: max(20px, min(4vw, 28px));
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.service-card .content p {
    font-size: max(16px, min(3vw, 20px));
    font-style: normal;
    font-weight: 400;
    line-height: max(24px, min(3vw, 28px));
}



/* packages */
.pckg-sec{
    background: #04144D;
}
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #315EFF;
}
.pkg-list.column-2  {
    grid-template-columns: repeat(2, 1fr);
}
.pkg-list .pckg {
    color: white;
}


.pkg-list .pckg .upper,.pkg-list .pckg .bottom {
    padding: 30px;
}

.pkg-list .pckg .title {
    color: #FFC727;
    font-family: var(--font-heading);
    font-size: max(16px, min(4vw, 18px));
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 105.263% */
    text-transform: capitalize;
    margin-bottom: 10px;
}

.pkg-list .pckg .price .amount {
    font-family: var(--font-heading);
    font-size: max(30px, min(4vw, 60px));
    font-style: normal;
    font-weight: 600;
    line-height: max(40px, min(5vw, 70px)); /* 73.333% */
    display: inline-flex;
    align-items: center;
}
.pkg-list .pckg .price .amount small {
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 0px; /* 0% */
    letter-spacing: 0.75px;
}
.pkg-list .pckg .upper {
    border-bottom: 1px solid #fff;
}

.pkg-list .pckg ul {
    font-style: normal;
    line-height: 24px; /* 150% */
    letter-spacing: 0.48px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
}
.pkg-list .pckg .scroll{
    max-height: 216px;
    overflow-y: auto;
}
.pkg-list .pckg .scroll p {
    margin: 1rem 0;
    font-size: 20px;
    font-weight: 600;
    color: #ffc727;
}
.pkg-list .pckg ul li {
    display: flex;
    gap: 5px;
}

.pkg-list .pckg ul li::before {
    content: "\f058";
    font-family: var(--icon);
    font-weight: 700;
    color: #fcc739;
}

.pkg-list .pckg .btn-wrap {
    margin: 0;
}

.pkg-list .pckg .bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pkg-list .pckg .price {
    font-size: max(16px, min(4vw, 20px));
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.pckg.active {
    background: #315EFF;
}

.pckg.active .btn-wrap a.theme-btn {
    background: #04144C;
}



.pckg.active {
    background: #315EFF;
}

.pckg.active .btn-wrap a.theme-btn {
    background: #04144C;
}

ul.overview-nav {
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 10px;
    display: flex;
    gap: 5px;
    width: 100%;
    justify-content: space-between;
    background: #04144C;
}

ul.overview-nav li a {
    border-radius: 5px;
    border: 1px solid #22262A;
    background: #fff;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px; /* 150% */
    padding: 12px;
}

ul.overview-nav li.active a {
    background: #FFC727;
}
ul.overview-nav.d2 {
    float: right;
    width: fit-content;
}
.pkg-list.c-dark .pckg:not(.active) {
    color: #333333;
}

.pkg-list.c-dark .pckg .upper {
    border-bottom: 1px solid #315EFF;
}

.pkg-list.c-dark .pckg.active .upper {
    border-bottom: 1px solid #fff;
}

.pkg-list.d2 {
    border: 0;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.pkg-list.d2 .pckg {
    border: 1px solid #315EFF;
}
/* packages */


.icon-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    padding: 20px;
}

.icon-card img {
    height: 60px;
}

.icon-card h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px; /* 125% */
    letter-spacing: -0.72px;
}

.icon-card p {
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
}




.ssl-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ssl-wrap .ssl-card {
    background: #F1F1F1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
}

.ssl-wrap .ssl-card .number {
    color: #315EFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: var(--font-heading);
}

.ssl-wrap .ssl-card p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px; /* 166.667% */
}



ul.icon-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 60px;
}

ul.icon-list h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.6px;
    text-transform: capitalize;
}

ul.icon-list p {
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    text-transform: capitalize;
}

ul.icon-list li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

ul.icon-list li span {
    position: absolute;
    left: -60px;
}




.seo-service-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seo-service-card h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.72px;
}

.seo-service-card p {
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
}



ul.number-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

ul.number-list li {
    display: flex;
    gap: 1rem;
    align-items: start;
}

ul.number-list li span {
    font-family: var(--font-heading);
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    letter-spacing: 0.354px;
    flex-shrink: 0;
    flex-basis: 120px;
}

ul.number-list li h3 {
    color: #333;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
    /* border-bottom: 1px solid #333; */
    /* padding-bottom: 1rem; */
    width: 100%;
}

ul.number-list li p {
    color: #333;
    line-height: 30px;
}

ul.number-list li div {
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.work-card {
    background: #F9F9F9;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.work-card .upper {
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.work-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.66px;
}

.work-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    letter-spacing: -0.54px;
}


form.contact-form.pckg-form {
    background: #315eff;
}

form.contact-form.pckg-form input, form.contact-form.pckg-form textarea,form.contact-form.pckg-form select {
    border: 1px solid #fff;
    background: transparent;
    color: white;
    width: 100%;
    padding: 10px;
}

form.contact-form.pckg-form h3 {
    font-size: 26px;
    margin-bottom: 1.5rem;
}

form.contact-form.pckg-form ::placeholder {
    color: white;
}

form.contact-form.pckg-form button {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    background: #ffc727;
}

.font-lg.white {
    color: white;
}

.font-lg {
    color: #FFF;
    font-size: max(20px, min(4vw, 34px));
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}


/* 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: 800px;
    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;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont h4 span span {
    display: none;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(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;
    text-align: left;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #0085ff;
    justify-content: start;
    text-align: left;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    display: block;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #3A3D40;
    text-align: left;
  }
  .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;
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
   border-radius: 5px;
   background-color: var(--primary);
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: 0.5s;
    height: 59px;
    cursor: pointer;
    border: 0;
  }
  
  .fld-btn button i {
    padding-left: 12px;
  }
  .fld-btn button:hover {
   transform:scale(1.03);
  }
/* popup */
@media (max-width: 1800px){
    span.elem {
        width: 300px;
    }
}
@media (max-width: 1440px) {
    span.elem {
        width: 250px;
    }
   
}

@media (max-width: 1200px) {
    span.elem {
        width: 200px;
    }
    
    span.elem.e1 {
        left: 10px;
        bottom: 10px;
    }
    
    span.elem.e2 {
        right: 10px;
        bottom: 20px;
    }
    .menuWrap {
        justify-content: space-between;
    }

    ul.menu.btns li {
        border: 0;
    }

    .menuWrap {
        justify-content: space-between;
    }

    header {
        padding: 1rem 0;
    }

    .btns {
        margin: 1.5rem 0;
    }

    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }

    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }

    .form-head .form-heading {
        white-space: normal;
        font-size: 20px;
    }

    .form-head {
        padding: 1rem;
    }

    .btn-normal {
        padding: 10px 8px;
    }

    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }

    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }

    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }

    .menuWrap .menu:first-child {
        padding-left: 0;
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .menu-Bar {
        display: block;
        top: 0px;
    }

    .menuWrap.open {
        display: flex;
        left: 0px;
    }

    .menuWrap {
        position: fixed;
        left: -210%;
        top: 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;
    }

    .mainBanner.inner .banner-content {
        padding: 100px 0 20px;
    }
    .btn-wrap .theme-btn {
        font-size: 16px;
    }

    section.cta-sec .img{
        display: none;
    }
    .pkg-list {
        border: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pkg-list .pckg {
        border: 1px solid #315EFF;
    }
    ul.overview-nav {
        margin-bottom: 1rem;
        width: fit-content;
    }
    .number-lg span {
        font-size: 150px;
        line-height: 150px;
    }
    section.cta-sec{
        margin: 0;
    }
    .testi-card {
        align-items: center;
    }
    section.testimonial-sec{
        text-align: center;
    }
}

@media (max-width : 1025px) {
    
}

@media (max-width : 1023px) {
    span.elem {
        display:none
    }
    ul.counter-list {
        flex-direction: column;
        text-align: center;
    }

    .img-card a {
        width: 100%;
    }

    section.about-sec .img {
        width: 100%;
    }

    section,
    section.about-sec {
        padding: 2rem 0 !important;
    }

    .banner-img {
        display: none;
    }

    section.testimonial-sec::before,
    section.testimonial-sec::after {
        background: #001E88;
    }
   
}
@media (max-width : 992px){
    ul.overview-nav {
        margin-bottom: 1rem;
    }
    
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    
    section.cta-sec .img {
        display: none;
    }
    .arrows {
        justify-content: center;
    }
}
/* 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) {
    
}

/* iPads (portrait) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
    /* Styles */


}


/* iPhone 6-8 Plus */
@media only screen and (min-width : 414px) and (max-width : 736px) and (orientation : portrait) {
    /* Styles */
}

@media only screen and (min-width : 414px) and (max-width : 736px) and (orientation : landscape) {
    /* Styles */
}



/* iPhone 6-8  */
@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : portrait) {
    /* Styles */
}

@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : landscape) {
    /* Styles */
}



/* Android (Pixel 2) */
@media only screen and (min-width : 412px) and (max-width : 684px) and (orientation : portrait) {
    /* Styles */
}

@media only screen and (min-width : 412px) and (max-width : 684px) and (orientation : landscape) {
    /* Styles */
}

/* Iphone X */
@media only screen and (min-width : 375px) and (max-width : 734px) and (orientation : portrait) {}

@media only screen and (min-width : 280px) and (max-width : 767px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }

    header {
        padding: 1rem 0;
    }

    .banner-content {
        padding: 100px 0 20px;
    }

    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }

   

   

    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .btn-wrap a {
        width: 100%;
        text-align: center;
    }

    .banner-img {
        display: none;
    }

    

    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }

    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    section.about-sec {
        padding: 1rem 0 !important;
    }

    section.about-sec .img {
        width: 100%;
    }

    section {
        padding: 1rem 0 !important;
    }

    .img-card a {
        width: 100%;
    }

    section.testimonial-sec::before,
    section.testimonial-sec::after {
        background: #07133D;
    }

    .trusted-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        text-align: center;
    }

    .message h2 {
        width: fit-content;
        font-size: 80px;
        line-height: 100px;
    }

    footer p,
    footer a {
        font-size: 14px;
        line-height: 24px;
    }

    .mainBanner.inner .banner-content {
        padding: 100px 0 10px;
    }
    span.elem {
        display: none;
    }
    
    ul.overview-nav li a {
        font-size: 14px;
        width: 100%;
        white-space: nowrap;
        text-align: center;
    }
    
    ul.overview-nav li {
        width: calc(50% - 10px);
    }
    
    ul.overview-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 10px 0;
        margin-bottom: 1.5rem;
    }
    section.cta-sec .img {
        display: none;
    }
    .number-lg span {
        font-size: 100px;
        line-height: 100px;
    }
    ul.overview-nav {
        justify-content: start;
        width: fit-content;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .ssl-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    ul.overview-nav.d2 {
        width: 100%;
        float: none;
    }
    .pkg-list.d2 {
        grid-template-columns: repeat(1, 1fr);
    }
    img.pop-img{
        display: none;
    }
}