/*Main Css */
:root {
    --primary: #ffc107;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --font-heading: "Kanit", sans-serif;
    --font-accent: "Inter", sans-serif;
    --font-body: "Inter", sans-serif;
    --icon: "Font Awesome 6 Pro", sans-serif;
}
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;
}

html {
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #5B5B5B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: 500;
    font-family: var(--font-heading);
    color: #131313;
}
*: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;
}

/* 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: absolute;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
    max-width: 180px;
}

/* 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: #000;
    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 26px;
}
.menu>li>a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: #000 !important;
    transition: .5s ease;
    /* letter-spacing: 4.2px; */
    /* text-transform: uppercase; */
    border: 2px solid var(--primary);
    border-radius: 0;
    font-weight: 500 !important;
}
.header-btn:hover {
    transform: scale(1.03);
}
.menu>li :hover>a,
.menu>li .active>a {
    color: #000
}

/* 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: 14px;
    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 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);
    }
}

@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: top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}
.mainBanner.border{
    border-bottom: 1px solid #ddd;
}
.mainBanner .btn-wrap {
    margin-bottom: 0;
}
.banner-img {
    width: 150%;
    display: flex;
    position: relative;
}
.banner-img::before{
    content: "";
    background: url("../images/banner/star.webp")no-repeat;
    width: 200px;
    height: 200px;
    position: absolute;
    background-size: contain;
    z-index: -1;
    /* left: -50px; */
    bottom: 15%;
}
.banner-img img {
    width: 100%;
}
.banner-content {
    padding: 175px 0 287px;
}
h1.banner-heading {
    font-size: 80px;
    font-weight: 500;
    line-height: 88px;
    margin-bottom: 30px;
}
h1.banner-heading span {
    display: inline;
    color: transparent;
    /* text-shadow: 2px 4px 0px #fff; */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    list-style: trad-chinese-formal;
    opacity: 0.5;
}
h1.banner-heading.lg {
    width: 100%;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}
p.banner-text {
    font-size: 20px;
    line-height: 28px;
    max-width: 100%;
    margin-bottom: 2rem;
}
.ban-bottom-image {
    margin-top: -290px;
}
.mainBanner.inner-page .banner-content {
    padding: 175px 0 120px;
}
.sec-heading strong {
    color: var(--191919, #191919);
    font-size: 24px;
    font-weight: 500;
    line-height: 34px; /* 141.667% */
}
.steps-card span {
    background: var(--color-theme, linear-gradient(180deg, #004EC4 0%, #191919 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 35px;
    font-weight: 500;
    line-height: 42px;
    margin-top: 17px;
}
.steps-card h3 {
    color: var(--191919, #191919);
    font-size: 20px;
    line-height: 42px;
}
.steps-card p {
    color: var(--5B5B5B, #5B5B5B);
    font-size: 16px;
    line-height: 26px; 
}
.steps-card ul li {
    color: var(--5B5B5B, #5B5B5B);
    font-size: 16px;
    line-height: 26px; 
}
.steps-card ul {
    list-style: disc;
    margin-left: 18px;
    margin-top: 13px;
}
.steps-card {
    background: #fff;
    border-right: 1px solid #33333329;
    padding: 0 18px 0 20px;
}
.trusted-image ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
}
.trusted-image {
    border-bottom: 1px solid #000;
    padding: 0 0 20px;
}
.step-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.step-wrapper p {
    color: var(--1A1A1A, #1A1A1A);
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: Kanit;
}
.step-wrapper div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.portfolio-wrapper {
    text-align: end;
    padding: 0 30px 0 0;
}
.portfolio-wrapper .sec-heading {
    border-right: 1px solid #3333336e;
    padding: 0 62px 0 0;
}
.portfolio-detail span {
    color: var(--5B5B5B, #5B5B5B);
    font-size: 16px;
    line-height: 26px;
    display: block;
    margin-bottom: 20px;
}
.portfolio-detail h3 {
    color: var(--191919, #191919);
    font-size: 32px;
    line-height: 26px;
}
.portfolio-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0 0;
}
.circle-port {
    text-align: center;
    margin: 56px 0 0;
}
.arrow-image {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.strategy-plan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.strategy-plan-card div {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.strategy-plan-card h3 {
    color: var(--191919, #191919);
    font-size: 23px;
    line-height: 42px;
}
.strategy-plan-card p {
    color: var(--5B5B5B, #5B5B5B);
    font-size: 16px;
    line-height: 26px; 
}

.email-marketing-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.email-marketing-card h3 {
    color: var(--191919, #191919);
    font-size: 24px;
    line-height: 34px;
}
.email-marketing-card p {
    color: var(--5B5B5B, #5B5B5B);
    font-size: 16px;
    line-height: 26px;
}

.contact-list {
    background: var(--fff, #FFF);
    padding: 50px 20px;
    text-align: center;
}
.contact-list a .upper, .contact-list p .upper {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    gap: 1rem;
    justify-content: center;
}
.contact-list a .upper i, .contact-list p .upper i{
    color: var(--primary);
}
.contact-list a,.contact-list p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0px;
    color: #000000;
    border-radius: 10px;
    width: 100%;
}
form.contact-wrap h3 {
    color: #0B0B0B;
    font-size: 38px;
    line-height: normal;
    letter-spacing: -0.96px;
    margin-bottom: 15px;
}
form.contact-wrap input,
form.contact-wrap textarea {
    border: 0;
    padding: 15px 15px;
    width: 100%;
    background: white;
    color: white;
    border-radius: 4px;
}
.contact-wrap .submit {
    padding: 20px 30px;
    background: var(--primary);
    color: #000 !important;
    transition: .5s ease;
    text-align: center;
    display: block;
    border: 0;
    font-weight: 500;
    border-radius: 0;
}
.bg-light {
    background: #FBFBFB !important;
}
section.contact-sec {
    background-color: #FAFAFA;
}
.contact-wrap p {
    margin-bottom: 35px;
}









/* Accordian */
.accordion-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.accordion-list ul {
    list-style: disc;
    padding-left: 1rem;
    line-height: 24px;
    margin-top: 1rem;
}
.accordion-list >li {
    padding: 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    background: #F4F4F4;
    border-radius: 0px;
}
ul.accordion-list >li span {
    display: flex;
    position: relative;
}
.accordion-list > li  h3 {
    color: #0B0B0B;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1.5rem;
}
ul.accordion-list >li h3:after {
    content: "\f078";
    font-family: var(--icon);
    color: #111827;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
}
ul.accordion-list >li.active h3:after {
    content: "\f077";
}
.answer p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 28px;
    color: #222A41;
}
/* Accordian */


/* popup */
.overlay {
    background-color: rgb(31 30 30 / 30%);
    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: 530px;
    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: 25px;
}
.mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
}
.mmpopup .fld-input {
    height: 50px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    overflow: hidden;
}
.mmpopup .centercont h4 {
    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;
    color: #333;
}
.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;
    text-align: left;
}
.mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
    margin-bottom: 10px;
}
.mmpopup .centercont h3 span {
    display: block;
    font-weight: 700;
    font-size: 26px;
    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;
    font-family: 'Inter';
}
.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;
    cursor: poRoboto;
    transition: 0.5s;
    font-family: 'Inter';
    height: 59px;
    cursor: pointer;
    border: 0;
}
.fld-btn button i {
    padding-left: 12px;
}
.fld-btn button:hover {
    transform: scale(1.03);
}
.mmpopup .formpop form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
}
.mmpopup .formpop form input,
.mmpopup .formpop form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}
.mmpopup .formpop form label {
    text-align: left;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    line-height: normal;
}
.mmpopup .formpop form label input {
    width: 20px;
    height: 20px;
}
.formpop form button {
    padding: 15px 30px;
    background: #000000;
    color: white;
    font-weight: 700;
    transition: .5s ease;
    letter-spacing: 4.2px;
    text-transform: uppercase;
    border: 0;
}
.popupmain p {
    font-size: 14px;
    line-height: normal;
    text-align: left;
}
/* popup */

/* packages */
.pckg-sec {
    background: #FAFAFA;
}
.pkg-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}
.pkg-list.g-2 {
    grid-template-columns: repeat(2, 1fr);
}
.pckg {
    height: 100%;
    padding: 30px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #fff;
    transition: .5s ease;
    background: var(--fff, #FFF);
    box-shadow: 0px 91px 94px 0px rgba(0, 0, 0, 0.03);
   
}
.pckg:hover {
    border: 1px solid #0c3470;
}
.pckg .btn-wrap a {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 2px solid #333333;
    color: #333;
}
.pckg:hover .btn-wrap a {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}
.pckg .btn-wrap .btn-norm {
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover {
    transform: scale(1.03);
}
.pckg .upper .title {
    margin-bottom: 1rem;
    color: #0B0B0B;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.52px;
    text-align: center;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    font-size: 16px;
    line-height: 24px;
    color: #6B7280;
    margin-bottom: 1.5rem;
    min-height: 40px;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0 0;
    justify-content: center;
}
.pckg .upper .price .amount {
    font-weight: 300;
    font-size: 34px;
    font-family: var(--font-heading);
    background: var(--color-theme, linear-gradient(180deg, #004EC4 0%, #191919 100%));
    color: #fff;
    padding: 16px 88px;
    border-radius: 50px;
}
.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #67687A;
}
.pckg .bottom .includes {
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
.pckg .bottom ul li {
    line-height: 22px;
    color: #222222;
    position: relative;
    display: flex;
}
.pckg .scroll p {
    font-size: 18px;
    margin: 1.5rem 0;
    font-weight: 600;
}
.pckg .scroll {
    overflow-y: auto;
    max-height: 288px;
    margin-bottom: 2rem;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: #0c3573;
    margin-right: 12px;
    padding-left: 2px;
}
.pckg .btn-wrap{
    margin-top: 1.5rem;
    margin-bottom: 0;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;
}
.sec-heading h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 60px;
    position: relative;
    margin-bottom: 2rem;
}
.sec-heading h3 {
    color: #0C121F;
    font-size: 38px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.96px;
}
.sec-heading.white h2 {
    color: white
}
.sec-heading p {
    font-size: 16px;
    line-height: 26px;
    color: #5B5B5B;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
/* sections */

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0 0 1rem;
}
.btn-wrap .theme-btn {
    padding: 20px 30px;
    background: var(--primary);
    color: #000;
    font-weight: 500;
    transition: .5s ease;
    font-size: 18px;
    border-radius: 0;
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover {
    transform: scale(1.03);
}
/* Theme Buttons */


form.contact-form.pckg-form {
    background: #000;
    border-radius: 10px;
}

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 select option {
    color: #333;
}
form.contact-form.pckg-form h3 {
    font-size: 26px;
    margin-bottom: 1.5rem;
    color: #fff;
}

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: var(--primary);
    color: #000;
}
form.contact-form {
    background: #04144C;
    padding: 40px;
    color: white;
}
form.contact-form label {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}
form.contact-form label {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: start;
}
form.contact-form label input {
    flex-basis: 10px;
    background: transparent;
}

















/* footer */
footer {
    background: var(--color-theme, linear-gradient(180deg, #004EC4 0%, #191919 100%));
    background-size: cover;
    background-position: center;
    padding: 117px 0 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid #6D6D6D;
}
.copyright img {
    width: 250px;
    max-width: 100%;
}
footer p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.579px;
    max-width: 80%;
}
footer .f-logo {
    margin-bottom: 1.5rem;
}
footer .f-logo img {
    max-width: 180px;
}
footer .f-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
footer .f-links a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}
footer .hdng {
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}
footer .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
footer .contact-links * {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.579px;
}
.sec-heading h4 {
    font-size: 128px;
    font-weight: 500;
    line-height: 138px; /* 107.813% */
}
.padding1 {
    padding: 80px 0;
}
/* footer */

ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 0 40px;
}
ul.overview-nav a {
    padding: 20px 40px;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid #000000;
    border-radius: 50px;
    color: #333333;
}
ul.overview-nav li.active a {
    background: var(--primary);
    color: #000;
    border-color: var(--primary) !important;
}
.port-card * {
    width: 100%;
}
/* Portfolio */

/* 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 ul ul {
    list-style: disc;
    padding-left: 1rem;
}
.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;
}
/* terms */

/* Checkout */
form.checkout-form {
    padding: 20px;
    background: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 10px;
}
form.checkout-form .inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}
form.checkout-form .inputs input {
    padding: .6rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}
label.checkbox {
    line-height: 24px;
}
label.checkbox a{
    color:var(--primary)
}
input.theme-btn {
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: 0;
    border-radius: 5px;
    transition: .5s ease;
}
input.theme-btn:hover {
    transform: scale(1.04);
}
.total {
    background: #f2f2f2;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.total ul {
    display: flex;
    flex-direction: column;
}
.total ul li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.total ul li {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
}
.total ul li span:first-child {
    font-weight: 600;
    font-size: 18px;
}
.total ul li span:last-child {
    font-weight: 500;
}


select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
}





@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    ul.menu.btns li {
        border-bottom: 0;
}
    .form-head .form-heading {
        white-space: normal;
        font-size: 20px;
    }
    .form-head {
        padding: 1rem;
    }
    .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;
    }
    .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;
        justify-content: space-between;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100dvh;
        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;
    }
    h1.banner-heading {
        font-size: 67px;
        line-height: 76px;
    }
    .steps-card {
        padding: 0 6px 0 8px;
    }
    .sec-heading h2 {
        font-size: 42px;
        line-height: 48px;
    }
    .step-wrapper p {
        font-size: 18px;
        line-height: 22px;
    }
    .portfolio-detail h3 {
        font-size: 28px;
        line-height: 26px;
    }
    .sec-heading h4 {
        font-size: 74px;
        line-height: 65px;
    }
    .padding1 {
        padding: 28px 0;
    }
    footer {
        padding: 68px 0 0;
    }
    .strategy-plan-card h3 {
        font-size: 24px;
        line-height: 26px;
    }
    
}

@media (max-width : 1025px) {
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
    }
}

@media (max-width : 1023px) {}

/* 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 */
    .steps-card {
        border-right: 0;
        padding: 0 0px 0 0px;
    }
    .sec-heading h2 {
        font-size: 35px;
        line-height: 38px;
    }
    .step-wrapper p {
        font-size: 16px;
        line-height: 18px;
    }
    .sec-heading h4 {
        font-size: 65px;
        line-height: 66px;
    }
    footer {
        padding: 50px 0 0;
    }
    .padding1 {
        padding: 16px 0;
    }
    .pckg .upper .title {
        font-size: 28px;
    }
    .pkg-list {
        gap: 1rem;
    }
    .pckg {
        padding: 22px;
    }
    .steps-card h3 {
        line-height: 28px;
    }
    .strategy-plan-card h3 {
        font-size: 20px;
        line-height: 30px;
    }




}

/* iPads (portrait) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
    /* Styles */

    .sec-heading h3 {
        font-size: 24px;
    }
    .header-parent {
        margin-top: 0;
    }
    .pkg-list {
        grid-template-columns: repeat(2, 1fr);
    }
    header {
        padding: 1rem 0;
    }
    .banner-content {
        padding: 150px 0 40px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 60px;
        line-height: 74px;
        margin-bottom: 2rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 40px;
        line-height: 46px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .ban-image {
        display: none;
    }
    .ban-bottom-image {
        margin-top: 0;
    }
    .steps-card {
        margin: 2.5rem 0;
        border-right: 0;
    }
    .image {
        margin-bottom: 25px;
    }
    .sec-heading strong {
        font-size: 18px;
        line-height: 28px;
    }
    .step-wrapper p {
        font-size: 18px;
        line-height: 20px;
    }
    .portfolio-wrapper .sec-heading {
        padding: 0 22px 0 0;
    }
    .portfolio-detail h3 {
        font-size: 24px;
        line-height: 22px;
    }
    .portfolio-detail span {
        margin-bottom: 0px;
    }
    .port-card {
        margin-bottom: 2rem;
    }
    .portfolio-detail {
        margin: 5px 0 0;
    }
    .circle-port {
        margin: 30px 0 35px;
    }
    img.dnone {
        display: none;
    }
    ul.overview-nav a {
        padding: 16px 30px;
        font-size: 14px;
    }
    ul.overview-nav {
        gap: 9px;
        margin: 0 0 0;
    }
    .pckg .scroll {
        margin-top: 1rem;
    }
    .accordion-list >li {
        padding: 16px;
    }
    .accordion-list > li h3 {
        font-size: 18px;
    }
    .sec-heading h4 {
        font-size: 40px;
        line-height: 44px;
    }
    footer {
        padding: 40px 0 0;
    }
    .padding1 {
        padding: 0px 0;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .strategy-plan {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .strategy-plan-card h3 {
        font-size: 22px;
        line-height: 34px;
    }
    .strategy-plan-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .email-marketing-card {
        margin-bottom: 2rem;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .contact-list {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    .image {
        display: none;
    }
    .email-marketing-card h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .email-marketing-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .contact-img {
        display: none;
    }



}

@media only screen and (min-width : 320px) and (max-width : 767px) {
    .sec-heading h3 {
        font-size: 24px;
    }
    .header-parent {
        margin-top: 0;
    }
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header {
        padding: 1rem 0;
    }
    .banner-content {
        padding: 150px 0 40px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 44px;
        line-height: 52px;
        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;
    }
    .ban-image {
        display: none;
    }
    .ban-bottom-image {
        margin-top: 0;
    }
    .steps-card {
        margin-bottom: 2.5rem;
    }
    .image {
        margin-bottom: 25px;
    }
    .sec-heading strong {
        font-size: 18px;
        line-height: 28px;
    }
    .step-wrapper {
        flex-direction: column;
    }
    .step-wrapper p {
        font-size: 18px;
        line-height: 20px;
    }
    .portfolio-wrapper .sec-heading {
        padding: 0 22px 0 0;
    }
    .portfolio-detail h3 {
        font-size: 24px;
        line-height: 22px;
    }
    .portfolio-detail span {
        margin-bottom: 0px;
    }
    .port-card {
        margin-bottom: 2rem;
    }
    .portfolio-detail {
        margin: 5px 0 0;
    }
    .circle-port {
        margin: 30px 0 35px;
    }
    img.dnone {
        display: none;
    }
    ul.overview-nav a {
        padding: 16px 30px;
        font-size: 14px;
    }
    ul.overview-nav {
        gap: 9px;
        margin: 0 0 0;
    }
    .pckg .scroll {
        margin-top: 1rem;
    }
    .accordion-list >li {
        padding: 16px;
    }
    .accordion-list > li h3 {
        font-size: 18px;
    }
    .sec-heading h4 {
        font-size: 40px;
        line-height: 44px;
    }
    footer {
        padding: 40px 0 0;
    }
    .padding1 {
        padding: 0px 0;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    .strategy-plan {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .strategy-plan-card h3 {
        font-size: 22px;
        line-height: 34px;
    }
    .strategy-plan-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .email-marketing-card {
        margin-bottom: 2rem;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .contact-list {
        padding: 30px 20px;
        margin-bottom: 20px;
    }


}