:root {
    --primary: #EF0023;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --font-heading: "Urbanist",sans-serif;
    --font-accent: "Lao Sans Pro",sans-serif;
    --font-body: "Lao Sans Pro",sans-serif;
    --icon: "Font Awesome 6 Pro",sans-serif
}

::selection {
    background: #ef0023;
    color: #fff;
    text-shadow: none
}

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

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

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

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #ef0023
}

[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: #525252
}

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

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

h1,h2,h3,h4,h5,h6 {
    color: #141414;
    display: block;
    font-weight: 700;
    font-family: var(--font-heading)
}

*,:focus,:hover {
    outline: 0!important
}

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

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

span {
    display: inline-block
}

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

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

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

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

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

::-moz-placeholder {
    opacity: 1
}

.ovr-hiddn {
    overflow: hidden
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.6);
    z-index: 1
}

.overlay {
    display: none
}

.overlay.active {
    display: block
}

header {
    -webkit-transition: all .4s ease-In-out;
    -moz-transition: all .4s ease-In-out;
    -o-transition: all .4s ease-In-out;
    transition: all .4s ease-In-out;
    position: relative;
    background: 0 0;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0
}

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

.header-btn.bordered {
    background: 0 0;
    color: var(--white)!important;
    padding: 16px 20px;
    border-radius: 68px;
    border: 1px solid #fff
}

.main-header {
    padding-top: 0
}

ul.menu.btns li {
    padding: 0 0 0 8px
}

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

.logo {
    display: inline-block
}

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

.dropdown ul li a svg {
    flex-shrink: 0
}

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

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

.menu-Bar span:first-child {
    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:first-child {
    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 {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-left:200px;
}

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

.menu>li>a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.header-btn {
    font-weight: 400!important;
    border-radius: 68px;
    color: #fafafa!important;
    background: var(--primary);
    font-size: 16px;
    border: 1px solid var(--primary);
    transition: .5s ease;
    display: flex!important;
    padding: 8px 9px 8px 25px;
    justify-content: center;
    align-items: center;
    gap: 22px;
    color: #fff;
    border-radius: 14px
}

.header-btn:hover {
    transform: scale(1.03)
}

.menu>li .active>a,.menu>li :hover>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)
    }
}

.has-child {
    position: relative;
    z-index: 1
}

.dropdown {
    position: absolute;
    background: #fff;
    border-radius: 0 0 14px 14px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%),0 6px 6px rgb(0 0 0 / 10%);
    display: none;
    margin-top: 31px
}

@keyframes slide {
    0% {
        height: 0
    }

    100% {
        height: auto
    }
}

.dropdown .dropdown {
    left: 100%;
    top: 0
}

.dropdown ul li a {
    padding: 14px 20px;
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 10px
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd
}

.chev.rotate {
    transform: rotate(180deg)
}

.chev {
    transition: .5s ease
}

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

    100% {
        top: 115px;
        opacity: 0
    }
}

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

    100% {
        top: 40px;
        opacity: 1
    }
}

.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1
}

.banner-content {
    padding: 40px 0 105px
}

h1.banner-heading {
    margin-bottom: 16px;
    color: var(--H,#141414);
    font-size: 82px;
    font-style: normal;
    font-weight: 700;
    line-height: 92px;
    letter-spacing: -1.64px
}

span.sub-heading {
    font-size: 14px;
    line-height: normal;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 74px;
    border: 1px solid #e6e6e6;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0,0,0,.05);
    width: fit-content;
    padding: 10px 17px 10px 12px
}

p.banner-text {
    margin-bottom: 20px;
    opacity: .67;
    color: #525252;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px
}

h1.banner-heading span {
    font-style: italic;
    color: var(--primary)
}

.banner-img {
    width: 47vw
}

.trusted-rating span {
    color: var(--H,#141414);
    font-size: 22px;
    font-weight: 600;
    line-height: 29px;
    display: block;
    border-bottom: 1px solid #e4e4e4;
    width: fit-content;
    padding: 0 0 10px;
    margin-bottom: 20px
}

.sec-heading h3 {
    color: #282828;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 4.8px;
    text-transform: uppercase
}

.trusted-rating {
    margin-top: 26px
}

.header-wrapper {
    border-bottom: 1px solid #ffffff85;
    padding: 28px 0
}

.sec-1 .sec-heading {
    margin-bottom: 0
}

.trusted-logos.slick-initialized.slick-slider {
    margin: 40px 0
}

section.sec-1 {
    padding: 70px 0 0;
    z-index: 1
}

.trusted-wrapper {
    overflow: hidden;
    border-bottom: 1px solid #0000002b
}

.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.sec-heading ul li {
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    opacity: .67;
    margin-bottom: 6px
}

.partners-wrapper {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 70px
}

section.sec-2 {
    padding: 100px 0
}

ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    border-radius: 25px;
    border: 1px solid rgba(105,189,255,.15);
    background: rgba(239,0,35,.1);
    box-shadow: 0 4px 34px 0 rgba(0,0,0,.06)
}

.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px
}

.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000
}

ul#counter li .counter>div {
    font-weight: 700;
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 33px
}

ul#counter li {
    padding: 33px 21px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #d9d9d9
}

ul#counter li .counter span.text {
    color: #525252;
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    opacity: .67
}

span.count {
    color: #212121
}

section.sec-4 {
    padding: 100px 0;
    background: #000
}

.design-card-list .slick-slide,.design-card-list-2 .slick-slide {
    margin: 0 10px
}

.design-card-list-2 {
    direction: rtl
}

.design-card-list,.design-card-list-2 {
    padding-bottom: 2rem
}

.design-card-list li,.design-card-list-2 li {
    position: relative;
    display: flex!important;
    justify-content: center
}

.design-card-list li a,.design-card-list-2 li a {
    width: 100%
}

.design-card-list li img,.design-card-list-2 li img {
    width: 100%
}

.port-card {
    margin-bottom: 22px
}

.port-card a {
    width: 100%
}

.port-card a img {
    width: 100%
}

.portfolio-page-nav {
    background: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999999
}

.portfolio-page-nav .logo {
    max-width: 240px;
    margin: auto
}

.portfolio-page-nav .back-btn {
    color: #000;
    font-family: var(--font-body);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.portfolio-viewframe {
    width: 100vw;
    min-height: 100dvh
}

.testi-wrapper .bottom {
    border-radius: 0 0 10px 10px;
    background: #ef0023;
    padding: 15px 14px;
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-wrapper {
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #00000021
}

.testi-wrapper .bottom h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

section.cta-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 92px 0
}

.cta-image {
    text-align: center
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 53px
}

.cta-badge {
    flex-shrink: 0
}

.cta-image svg {
    position: absolute;
    bottom: 0;
    left: 19vw;
    height: 100%;
    z-index: -1
}

.cta-image img {
    position: absolute;
    bottom: -39px;
    left: 17vw
}

.sec-heading h5 {
    font-size: 42px;
    font-weight: 700;
    line-height: 47px;
    padding: 15px 0 0
}

.free-consultation-image {
    text-align: center;
    margin-top: 38px
}

.theme-btn.bordered2 {
    border-radius: 68px!important;
    border: 1px solid #ef0023!important;
    background: 0 0!important;
    color: var(--primary)!important;
    padding: 13px 20px!important
}

img.circle-vector1 {
    position: absolute;
    top: 0;
    left: 0
}

img.circle-vector2 {
    position: absolute;
    top: 0;
    right: 0
}

.process-box-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 10vw;
    left: 0;
    width: 100%;
    height: 226px;
    background: #100f0f;
    box-shadow: 0 -29px 51.8px 0 rgba(0,0,0,.76);
    z-index: -1
}

.service-card img {
    border-radius: 18px;
    width: 100%
}

section.counter-sec {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.process-box {
    display: flex;
    gap: 53px
}

.process-box:before {
    content: "";
    display: block;
    position: absolute;
    top: 19vw;
    left: 8.7vw;
    right: 0;
    z-index: -1;
    margin: 0 auto;
    height: 57%;
    width: 2px;
    background: repeating-linear-gradient(to bottom,#0000000a 0,#0000000a 4px,transparent 4px,transparent 10px)
}

.process-box:nth-child(3) .process-card {
    border-bottom: 0
}

.process-box.padding2 {
    padding: 30px 0 0
}

.process-number {
    color: var(--primary);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px
}

.process-card {
    border-bottom: 1px solid #d9d9d9;
    padding: 0 0 30px
}

.process-card h4 {
    font-size: 24px;
    line-height: 1;
    margin: 1rem 0 .5rem
}

.process-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #525252
}

section.sec-10 {
    padding: 100px 0
}

section.sec-3 {
    padding: 100px 0;
    background: #111
}

.service-card {
    display: flex;
    padding: 13px;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    height: 100%;
    border-radius: 17.977px;
    border: 1px solid rgba(217,217,217,.3);
    background: #1f1f1f
}

.service-card h3 {
    font-size: 26px;
    line-height: 118.6%;
    margin-bottom: 10px;
    color: #fff
}

.service-card p {
    color: #525252;
    font-size: 16px;
    line-height: 24px;
    opacity: .67
}

.service-card .ser-image {
    margin: 0 auto
}

section.free-consultation {
    padding: 100px 0 107px;
    background-size: cover;
    background-position: bottom
}

section.sec-5 {
    background-size: cover;
    padding: 80px 0
}

.accordion-list {
    position: relative
}

.accordion-list li {
    padding: 21.6px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    margin-bottom: 14px;
    border-radius: 18px;
    border: 1.2px solid rgba(217,217,217,.3);
    background: #1f1f1f
}

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

.accordion-list li h3 {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px
}

ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #fff;
    transition: all .3s ease-in-out;
    font-size: 11px;
    font-weight: 500;
    top: 0;
    height: 24px;
    width: 24px;
    background: #474747;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%
}

.accordion-list li.active h4::after {
    color: #9ca3af;
    content: "\f077"
}

ul.accordion-list li.active h3:after {
    content: "\f077";
    background: var(--primary);
    color: #fff
}

.answer p {
    margin-top: 12px;
    opacity: .67;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px
}

.accordion-list>li.last {
    margin-bottom: 0
}

.accordion-list>li.active .answer {
    display: block!important
}

.answer {
    border-top: 1px solid #ffffff2e;
    margin-top: 20px
}

ul.accordion-list li.active h3 {
    opacity: 1
}

section.sec-12 {
    padding: 100px 0;
    background: #000
}

.contact-detail li {
    display: inline-block;
    vertical-align: middle;
    gap: 10px;
    border-right: 1px solid #00000030;
    width: 24%
}

ul.contact-detail {
    display: inline-block;
    vertical-align: middle;
    margin: 40px 0 30px;
    border-top: 1px solid #00000026;
    border-bottom: 1px solid #00000026;
    padding: 30px 0;
    width: 100%
}

.contact-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    color: #000;
    opacity: .67
}

.contact-card a {
    font-size: 13.287px;
    font-weight: 400;
    line-height: 19.931px;
    opacity: .67;
    color: #282828
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex-direction: column
}

.contact-detail li.last {
    margin-right: 0;
    border-right: 0
}

.sec-13 .sec-heading {
    margin-bottom: 0
}

.sec-heading {
    margin-bottom: 2rem
}

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

.sec-heading h2 {
    font-size: 50px;
    line-height: 57px
}

.sec-heading.white h2 {
    color: #fff
}

.sec-heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 1rem 0;
    opacity: .67;
    color: #525252
}

.sec-heading .sub-heading {
    font-weight: 400;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 118.6%
}

section {
    padding: 4rem 0;
    position: relative
}

.padding-2 {
    padding: 1rem 0
}

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

.btn-wrap .theme-btn {
    background: var(--primary);
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--primary);
    transition: .5s ease;
    display: flex;
    padding: 8px 8px 8px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-radius: 14px;
    border: 1px solid
}

.btn-wrap .theme-btn.bordered {
    background: 0 0;
    color: var(--primary);
    border: 1px solid #fff;
    border-radius: 14px;
    border-radius: 14px;
    border: 1px solid #ef0023;
    background: #fff
}

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

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

.popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    max-height: 90vh
}

.mmpopup {
    background: url("../images/lp/popup-bg.webp");
    background-size: cover;
    background-position: top;
    border-radius: 33px;
    border: 5px solid #000;
    padding: 12px
}

.mmpopup .popup-content {
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #000;
    box-shadow: 0 4px 52.4px 0 rgba(0,0,0,.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
    background-image: url(../images/lp/counter-banner.webp)
}

.mmpopup .formpop {
    width: 100%;
    margin-top: 0
}

.mmpopup .form-text {
    color: #fff;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px
}

.mmpopup .form-text a {
    color: var(--primary);
    font-weight: 700
}

.mmpopup .form-text a:hover {
    color: var(--secondary)
}

.mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%
}

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

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

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

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

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

.closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px
}

.closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png) no-repeat;
    width: 16px;
    height: 16px;
    display: block
}

.closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999
}

.closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png) no-repeat;
    width: 16px;
    height: 16px;
    display: block
}

.mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative
}

.mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px
}

.mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px
}

.mmpopup .centercont ul li.last {
    padding-bottom: 0
}

.mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px
}

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

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

.mmpopup .centercont h3 span {
    color: #fff;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1
}

.mmpopup .centercont h4 span {
    font-weight: 700;
    color: #fff;
    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: .2px;
    background: #eee;
    border: 0!important;
    outline: 0!important;
    box-shadow: none;
    font-family: Inter
}

.fld-input input::placeholder {
    color: #737373;
    font-weight: 400
}

.fld-btn button {
    border: 0
}

.form-group field input.form-field {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.3)
}

.form-group input.form-field {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid rgb(255 252 252 / 30%);
    font-size: 16px;
    width: 100%;
    color: #fff
}

.fld-btn button.banner-btn {
    border: 2px solid var(--primary);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 5px;
    background: var(--primary);
    box-shadow: 0 10px 21.1px 0 rgba(0,0,0,.15)
}

.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem
}

.form-label {
    margin-bottom: .5rem;
    color: #fff;
    font-size: 16px
}

footer {
    position: relative;
    background: #0a0a0a;
    padding: 70px 0 0
}

.copyright {
    padding: 15px 0 12px
}

.copyright a,.copyright p {
    color: #fcfcfc;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px
}

ul.footer-links {
    display: flex;
    align-items: center;
    justify-content: end
}

ul.footer-links li {
    margin: 0 10px 0
}

ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px
}

.footer-sec p {
    padding: 20px 0 30px;
    max-width: 100%;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    opacity: .7
}

.footer-hdng h4 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.f-menu li a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    opacity: .7
}

.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px
}

.f-menu li a i {
    color: var(--primary);
    margin-right: 10px
}

.f-menu li {
    line-height: 1
}

.copyright-sec {
    border-top: 1px solid #d9d9d97a;
    background: #0a0a0a
}

.service-menu li a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: normal
}

.service-menu li {
    line-height: 2;
    display: inline-block;
    vertical-align: middle;
    width: 40%
}

ul.service-menu {
    display: inline-block;
    vertical-align: middle
}

.borderbottom {
    border-bottom: 1px solid #d9d9d980;
    text-align: center
}

ul.f-menu {
    display: inline-block;
    vertical-align: middle
}

ul.f-menu li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
    padding: 0 10px
}

ul.f-menu li.first {
    border-right: 1px solid #fff
}

.padding1 {
    padding: 24px 0
}

.rating-wrapper ul li {
    display: inline-block;
    vertical-align: middle;
    border-radius: 15px;
    border: 1px solid rgba(217,217,217,.3);
    padding: 20px 15px;
    text-align: left;
    margin-left: 20px
}

.rating-wrapper ul {
    display: inline-block;
    vertical-align: middle
}

span.stars {
    display: block;
    padding: 10px 0
}

.rating-wrapper {
    text-align: center;
    margin: 30px 0
}

.rating-wrapper ul li p {
    color: #fff;
    opacity: .7
}

.trustpilot-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 26px 0 0
}

.trustpilot-wrap p {
    color: #fff;
    opacity: .7
}

.error-text {
    font-size: 96px;
    line-height: 68px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 1.5rem
}

.error-heading {
    font-weight: 500;
    font-size: 42px;
    line-height: 68px;
    color: #fff
}

.error-image {
    margin-top: 100px
}

.thankyou-text {
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
    color: #fff
}

.banner-content.innerpage.terms span.sub-heading {
    justify-content: center
}

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

.thankyou-page {
    padding: 150px 0
}

.pckg {
    color: #000;
    position: relative;
    transition: .3s;
    height: 100%;
    border-radius: 16px 16px 24px 24px;
    border: 1px solid #17191b;
    background: #1f1f1f;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.12)
}

.pckg .btn-wrap a {
    font-weight: 500;
    font-size: 20px;
    line-height: 18px;
    color: #fafafa;
    justify-content: space-between;
    border: none
}

.pckg .btn-wrap .btn-norm {
    color: var(--primary);
    transition: .5s ease
}

.pckg .btn-wrap .btn-norm:hover {
    transform: scale(1.03)
}

.pckg .bottom,.pckg .upper {
    padding: 30px 20px 26px
}

.pckg .upper .title {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 5px;
    font-family: serif;
    color: #fff
}

.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6b7280
}

.pckg .upper p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 7px;
    color: #fff;
    opacity: .8
}

.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: .5rem 0 0;
    padding: 0 0 0
}

.pckg .upper .price .amount {
    font-weight: 600;
    font-size: 60px;
    line-height: normal;
    color: #fff;
    font-family: serif
}

.pckg .upper .price .uspto {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #fff;
    font-family: serif;
    display: flex;
    align-items: center;
    border-radius: 35.636px;
    background: var(--primary);
    padding: 3px 3px 3px 15px;
    justify-content: space-between;
    gap: 10px;
    border-radius: 35px;
    background: #c30000
}

.pckg .upper {
    padding: 25px 25px 20px 25px;
    background: #ef00231f;
    border-radius: 16px 16px 0 0
}

.pckg .bottom .includes {
    letter-spacing: .025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px
}

.pckg .bottom ul li {
    position: relative;
    display: flex;
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    opacity: .8
}

.pckg .bottom ul {
    padding-right: 10px;
    height: 200px;
    overflow-y: auto
}

.bottom span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    font-family: sans-serif;
    padding-bottom: 18px
}

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

.pckg .btn-wrap {
    flex-direction: column;
    margin: 0
}

.pckg:hover .upper {
    background: var(--primary)
}

.pckg-btn .btn-wrap {
    flex-direction: row
}

.forcall-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px
}

.off-price {
    border-radius: 35.636px;
    background: #fff;
    color: #c30000;
    font-size: 16px;
    line-height: normal;
    padding: 5px 12px
}

.pckg-btn {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-top: 1px solid #ffffff26;
    gap: 5rem;
    position: relative
}

.forcall-btn p {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    opacity: .8
}

.forcall-btn a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    line-height: normal
}

.pckg .upper .price .amount b {
    color: #fff
}

.pckg .bottom ul li svg {
    margin-right: 10px;
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4.5px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 100px;
    background: #07a721
}

.pckg-btn a {
    color: #fff;
    font-size: 14.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem
}

.pckg-btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #ffffff36;
    width: 1px;
    height: 63.76px;
    margin: 0 auto
}

.pckg:hover .btn-wrap a {
    background: #fff;
    color: var(--primary)
}

.pckg:hover .btn-wrap a svg {
    filter: drop-shadow(2px 4px 6px black)
}

ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 9px 11px;
    border-radius: 74px;
    border: 1px solid rgba(230,230,230,.3);
    background: #1f1f1f
}

ul.overview-nav a {
    padding: 16px 17px;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #ffffffa1
}

ul.overview-nav li.active a {
    background: 0 0;
    color: var(--white);
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    border-radius: 74px;
    background: #ef0023
}

section.sec-8 {
    overflow: hidden;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: bottom
}

@media (max-width: 1440px) {
    .banner-img {
        position:relative;
        top: 0;
        right: 0;
        width: auto
    }

    h1.banner-heading {
        font-size: 60px;
        line-height: 66px
    }

    .banner-content {
        padding: 90px 0 80px
    }

    section.sec-3 {
        padding: 100px 0 85px;
        margin: 60px 0 0;
        background-position: bottom
    }

    .portfolio-image {
        max-height: 350px
    }

    .flex-column {
        flex-direction: row!important
    }

    .custom-column {
        margin-top: 0
    }

    .custom-wrapper {
        padding: 12px;
        margin-bottom: 14px;
        gap: 10px
    }

    .sec-heading h4 {
        font-size: 32px;
        line-height: 118.6%
    }

    .contact-detail li {
        margin: 5px
    }

    .trusted-wrapper {
        padding: 30px 0;
        margin-top: 0
    }

    ul.menu.btns {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center
    }

    ul.menu.btns li {
        padding: 0
    }

    ul.menu.btns li a {
        font-size: 14px;
        padding: 16px 20px!important
    }

    .menuWrap2 {
        justify-content: end
    }

    section {
        padding: 2rem 0;
        position: relative
    }

    .process-box-wrapper:before {
        display: none
    }

    .cta-image {
        top: 0;
        right: 4vw;
        width: 20.7vw
    }

    .sec-heading h5 {
        font-size: 26px;
        line-height: 22px;
        padding: 12px 0 0
    }

    section.cta-sec {
        padding: 32px 0
    }

    section.free-consultation {
        padding: 45px 0 50px
    }

    ul#counter {
        margin: 0 0 16px
    }

    ul#counter li .counter>div {
        font-size: 30px
    }

    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 26px
    }

    .rating-wrapper ul li {
        margin: 6px
    }

    section.sec-10 {
        padding: 46px 0 45px
    }

    footer {
        padding: 35px 0 0
    }

    section.sec-1 {
        padding: 2rem 0
    }

    section.sec-5 {
        padding: 50px 0
    }

    .mainBanner:before {
        background-position: bottom
    }

    .cta-sec .sec-heading {
        margin-left: 134px
    }

    .banner-content:before {
        top: 14vw
    }

    .cta-image img {
        bottom: -42px;
        left: 7vw
    }

    .cta-image svg {
        left: 8vw
    }

    .process-box:before {
        top: 21vw;
        left: 11vw;
        height: 63%
    }
}

@media (max-width: 1200px) {
    header .main-header ul.menu>li>a.nav-links {
        display:none!important
    }

    .btns {
        margin: 1.5rem 0
    }

    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
        margin-top: 0
    }

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

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

    .form-head {
        padding: 1rem
    }

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

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

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

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

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

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

    .menu-Bar {
        display: none;
        top: 0
    }

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

    .menuWrap {
        position: fixed;
        left: -210%;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #f7e9eb;
        height: 100dvh;
        display: flex;
        align-items: center;
        flex-flow: column;
        transition: all .4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%),0 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: 0;
        margin-right: 0;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize
    }

    .container {
        position: relative
    }

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

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

    .banner-img {
        position: relative;
        top: 0;
        right: 0;
        width: auto
    }

    h1.banner-heading {
        font-size: 60px;
        line-height: 66px
    }

    .banner-content {
        padding: 90px 0 80px
    }

    section.sec-3 {
        padding: 100px 0 85px;
        margin: 60px 0 0;
        background-position: bottom
    }

    .portfolio-image {
        max-height: 350px
    }

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

    .flex-column {
        flex-direction: row!important
    }

    .custom-column {
        margin-top: 0
    }

    .custom-wrapper {
        padding: 12px;
        margin-bottom: 14px;
        gap: 10px
    }

    .sec-heading h4 {
        font-size: 32px;
        line-height: 118.6%
    }

    .contact-detail li {
        margin: 5px;
        width: 20%
    }

    .trusted-wrapper {
        padding: 30px 0;
        margin-top: 0
    }

    ul.menu.btns {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center
    }

    ul.menu.btns li {
        padding: 0
    }

    ul.menu.btns li a {
        font-size: 14px;
        padding: 16px 20px!important
    }

    .menuWrap2 {
        justify-content: end
    }

    section {
        padding: 2rem 0;
        position: relative
    }

    .process-box-wrapper:before {
        display: none
    }

    .cta-image {
        top: 0;
        right: 4vw;
        width: 20.7vw
    }

    .sec-heading h5 {
        font-size: 26px;
        line-height: 22px;
        padding: 12px 0 0
    }

    section.cta-sec {
        padding: 32px 0
    }

    section.free-consultation {
        padding: 45px 0 50px
    }

    ul#counter {
        margin: 0 0 16px
    }

    ul#counter li .counter>div {
        font-size: 30px
    }

    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 26px
    }

    .rating-wrapper ul li {
        margin: 6px
    }

    section.sec-10 {
        padding: 46px 0 45px
    }

    .main-header {
        padding-top: 0
    }

    footer {
        padding: 35px 0 0
    }

    section.sec-1 {
        padding: 2rem 0
    }

    section.sec-5 {
        padding: 50px 0
    }

    .mainBanner:before {
        background-position: bottom
    }

    .cta-sec .sec-heading {
        margin-left: 134px
    }

    .header-wrapper {
        padding: 0
    }

    .cta-image img {
        bottom: -42px;
        left: 7vw
    }

    .cta-image svg {
        display: none
    }

    .pckg .upper .price .amount {
        font-size: 50px
    }

    .off-price {
        font-size: 14px;
        padding: 9.345px 14.691px
    }

    .process-box:before {
        top: 16vw;
        left: 12vw;
        height: 74%
    }
}

@media (max-width : 1199px) {
    .banner-img {
        position:relative;
        top: 0;
        right: 0;
        width: auto
    }

    h1.banner-heading {
        font-size: 50px;
        line-height: 56px
    }

    .banner-content {
        padding: 45px 0 40px
    }

    section.sec-3 {
        padding: 100px 0 85px;
        margin: 60px 0 0;
        background-position: bottom
    }

    .portfolio-image {
        max-height: 350px
    }

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

    .sec-heading {
        margin-bottom: 1rem
    }

    section.sec-6 {
        padding: 50px 0
    }

    .process-number {
        font-size: 30px
    }

    .process-card p {
        font-size: 14px;
        line-height: 1.4
    }

    section.sec-12 {
        padding: 50px 0
    }

    .contact-detail li {
        padding: 15px;
        margin: 5px
    }

    ul.contact-detail {
        margin: 20px 0 20px
    }

    .footer-sec p {
        padding: 10px 0;
        font-size: 13px;
        line-height: 22px;
        max-width: 100%
    }

    .footer-hdng h4 {
        margin-bottom: 8px
    }

    .f-menu li a {
        font-size: 13px
    }

    .pckg .upper {
        padding: 20px 10px 16px;
        width: 294px
    }

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

    .pckg .bottom {
        padding: 20px 14px 16px
    }

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

    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px
    }

    .pckg-btn {
        padding: 10px
    }

    .service-image {
        padding-top: 0
    }

    .trusted-wrapper {
        padding: 30px 0;
        margin-top: 0
    }

    ul.menu.btns {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center
    }

    ul.menu.btns li {
        padding: 0
    }

    ul.menu.btns li a {
        font-size: 14px;
        padding: 16px 20px!important
    }

    .menuWrap2 {
        justify-content: end
    }

    section {
        padding: 2rem 0;
        position: relative
    }

    .process-box-wrapper:before {
        display: none
    }

    .cta-image {
        top: 0;
        right: 2vw;
        width: 19.7vw
    }

    .sec-heading h5 {
        font-size: 26px;
        line-height: 22px;
        padding: 12px 0 0
    }

    section.cta-sec {
        background-size: auto;
        padding: 32px 0
    }

    section.free-consultation {
        padding: 45px 0 50px
    }

    ul#counter {
        margin: 0 0 16px
    }

    ul#counter li .counter>div {
        font-size: 30px
    }

    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 26px
    }

    .rating-wrapper ul li {
        margin: 6px
    }

    section.sec-10 {
        padding: 46px 0 45px
    }

    .main-header {
        padding-top: 0
    }

    .mainBanner:before {
        display: none
    }

    .banner-content:before {
        display: none
    }

    footer {
        padding: 35px 0 0
    }

    section.sec-1 {
        padding: 2rem 0
    }

    section.sec-5 {
        padding: 50px 0
    }

    .header-wrapper {
        padding: 0
    }

    .service-card {
        flex-direction: column
    }

    .cta-image svg {
        display: none
    }
}

@media (max-width : 1023px) {
    .btn-wrap .theme-btn {
        font-size:16px;
        justify-content: space-between
    }

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

@media (max-width : 992px) {
    .banner-img {
        position:relative;
        top: 0;
        right: 0;
        text-align: center;
        width: auto
    }

    h1.banner-heading {
        font-size: 50px;
        line-height: 56px
    }

    .banner-content {
        padding: 50px 0 50px
    }

    section.sec-3 {
        padding: 100px 0 85px;
        margin: 60px 0 0;
        background-position: bottom
    }

    .portfolio-image {
        max-height: 350px
    }

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

    .sec-heading {
        margin-bottom: 1rem;
        margin-left: 0!important
    }

    section.sec-6 {
        padding: 50px 0
    }

    .process-number {
        font-size: 30px
    }

    .process-card p {
        font-size: 14px;
        line-height: 1.4
    }

    .contact-detail li {
        padding: 10px;
        margin: 5px
    }

    ul.contact-detail {
        margin: 20px 0 20px
    }

    .footer-sec p {
        padding: 10px 0;
        font-size: 13px;
        line-height: 22px;
        max-width: 100%
    }

    .footer-hdng h4 {
        margin-bottom: 8px
    }

    .f-menu li a {
        font-size: 13px
    }

    .service-menu li a {
        font-size: 13px
    }

    .features-section {
        padding: 32px 30px
    }

    .banner-content.innerpage {
        padding: 70px 0 50px
    }

    h1.banner-heading.innerpage {
        font-size: 38px
    }

    .pckg .upper {
        padding: 20px 10px 16px;
        width: 294px
    }

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

    .pckg .bottom {
        padding: 20px 14px 16px
    }

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

    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px
    }

    .pckg-btn {
        padding: 10px;
        flex-direction: column;
        gap: 6px
    }

    .pckg-btn:before {
        display: none
    }

    ul.custom-list li {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 8px
    }

    ul.services-list li {
        font-size: 13px;
        line-height: 24px;
        padding: 5px 10px;
        margin: 0 4px 7px 0
    }

    .service-image {
        padding-top: 0
    }

    .terms p {
        margin-bottom: 1rem;
        font-size: 14px
    }

    .terms h4 {
        font-size: 20px;
        margin: 2rem 0 1rem
    }

    section.terms-sec {
        padding: 1rem 0
    }

    .error-text {
        font-size: 50px;
        line-height: 22px;
        margin-bottom: 1rem
    }

    .error-heading {
        font-size: 30px;
        line-height: 40px
    }

    .thankyou-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 8px
    }

    .thankyou-page {
        padding: 60px 0 60px
    }

    .trusted-wrapper {
        padding: 30px 0;
        margin-top: 0
    }

    ul.menu.btns {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center
    }

    ul.menu.btns li {
        padding: 0
    }

    ul.menu.btns li a {
        font-size: 14px;
        padding: 16px 20px!important
    }

    .menuWrap2 {
        justify-content: end
    }

    section {
        padding: 2rem 0;
        position: relative
    }

    .process-box-wrapper:before {
        display: none
    }

    .sec-heading h5 {
        font-size: 26px;
        line-height: 22px;
        padding: 12px 0 0
    }

    section.cta-sec {
        background-size: auto;
        padding: 32px 0
    }

    section.free-consultation {
        padding: 45px 0 50px
    }

    ul#counter {
        margin: 0 0 16px
    }

    ul#counter li .counter>div {
        font-size: 30px
    }

    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 26px
    }

    .rating-wrapper ul li {
        margin: 6px
    }

    section.sec-10 {
        padding: 46px 0 45px
    }

    .main-header {
        padding-top: 0
    }

    .mainBanner:before {
        display: none
    }

    .banner-content:before {
        display: none
    }

    footer {
        padding: 35px 0 0
    }

    section.sec-2 {
        padding: 50px 0
    }

    .sec-heading ul li {
        font-size: 14px
    }

    section.sec-4 {
        padding: 50px 0
    }

    .process-card h4 {
        font-size: 20px
    }

    .service-card {
        flex-direction: column
    }

    .service-card h3 {
        font-size: 22px
    }

    ul#counter li {
        padding: 18px 6px;
        border-bottom: 0
    }

    .header-wrapper {
        border-bottom: 1px solid #00000021;
        padding: 0
    }

    p.banner-text {
        font-size: 16px;
        line-height: 23px
    }

    .pckg .upper .price .amount {
        font-size: 46px
    }

    .off-price {
        font-size: 12px;
        padding: 9.345px 10.691px
    }

    .pckg .upper .price .uspto {
        font-size: 14px;
        gap: 5px
    }

    .process-box.padding2 {
        padding: 14px 0 0
    }

    .process-box:before {
        display: none
    }

    img.dot {
        display: none
    }
}

@media only screen and (min-width : 768px) and (max-width :991px) {
    header {
        padding:1rem 0
    }

    .banner-content {
        padding: 50px 0 20px
    }

    span.sub-heading {
        margin-bottom: 12px;
        font-size: 14px
    }

    h1.banner-heading {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 10px
    }

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

    .banner-img {
        display: none
    }

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

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

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

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

    .header-wrapper {
        padding: 0
    }

    br {
        display: none
    }

    .sec-heading h3 {
        font-size: 14px;
        line-height: 22px
    }

    .trusted-logos.slick-initialized.slick-slider {
        margin: 16px 0
    }

    section.sec-3 {
        padding: 56px 0 85px;
        margin: 20px 0 0;
        background-position: top
    }

    .process-number {
        font-size: 30px;
        margin-top: 0
    }

    .process-card {
        margin-top: -38px
    }

    .process-card {
        padding: 15px
    }

    .process-card p {
        font-size: 14px
    }

    .accordion-list li {
        padding: 14px;
        border-radius: 15px
    }

    .accordion-list li h3 {
        line-height: 22px;
        max-width: 92%
    }

    section.sec-13 {
        padding: 50px 0 10px
    }

    ul.contact-detail {
        margin: 16px 0 10px;
        padding: 0;
        width: 100%
    }

    .contact-detail li {
        margin-bottom: 10px;
        padding: 20px 10px
    }

    .footer-sec p {
        padding: 10px 0;
        font-size: 13px;
        line-height: 22px;
        max-width: 100%
    }

    .footer-hdng h4 {
        margin-bottom: 8px
    }

    .main-header {
        padding-top: 0
    }

    .f-menu li {
        line-height: 1.5
    }

    .service-menu li {
        line-height: 1.5
    }

    footer {
        padding: 30px 0 0
    }

    .copyright {
        padding: 8px
    }

    .pckg-wrapper {
        flex-direction: column
    }

    .pckg .upper {
        border-right: 0;
        padding: 25px 20px 0;
        width: auto
    }

    .pckg .bottom {
        padding: 16px 20px 26px
    }

    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px
    }

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

    .forcall-btn {
        flex-direction: column;
        gap: 4px
    }

    .pckg-btn {
        padding: 10px
    }

    .pckg-btn:before {
        display: none
    }

    .pckg .btn-wrap a {
        width: auto
    }

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

    ul.overview-nav li {
        margin-bottom: 0
    }

    ul.overview-nav li.active a {
        border: 1px solid var(--primary);
        border-bottom: 1px solid var(--primary);
        font-weight: 400
    }

    ul.overview-nav a {
        padding: 12px 14px;
        font-size: 14px
    }

    ul.overview-nav {
        border-bottom: 0
    }

    ul.overview-nav {
        gap: 10px;
        margin: 0 auto 25px
    }

    .sec-heading h6 {
        font-size: 20px;
        line-height: 26px
    }

    .contact-wrapper {
        flex-direction: column
    }

    .terms p {
        margin-bottom: 1rem;
        font-size: 14px
    }

    .terms h4 {
        font-size: 20px;
        margin: 2rem 0 1rem
    }

    section.terms-sec {
        padding: 1rem 0
    }

    .error-text {
        font-size: 50px;
        line-height: 22px;
        margin-bottom: 1rem
    }

    .error-heading {
        font-size: 30px;
        line-height: 40px
    }

    .thankyou-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 8px
    }

    .thankyou-page {
        padding: 60px 0 60px
    }

    .banner-content:before,.mainBanner:before {
        display: none
    }

    .trusted-wrapper {
        padding: 30px 0;
        margin-top: 0
    }

    ul.menu.btns {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center
    }

    ul.menu.btns li {
        padding: 0
    }

    ul.menu.btns li a {
        font-size: 12px;
        padding: 12px 20px!important
    }

    .menuWrap2 {
        justify-content: center
    }

    .partners {
        flex-direction: column
    }

    section {
        padding: 2rem 0;
        position: relative
    }

    .process-box-wrapper:before {
        display: none
    }

    .cta-image {
        display: none
    }

    .sec-heading h5 {
        font-size: 26px;
        line-height: 22px;
        padding: 12px 0 0
    }

    section.cta-sec {
        background-size: auto;
        padding: 32px 0
    }

    section.free-consultation {
        padding: 45px 0 50px
    }

    ul#counter {
        flex-direction: row;
        gap: 4rem;
        justify-content: center
    }

    ul#counter li .counter>div {
        font-size: 30px
    }

    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 26px
    }

    .rating-wrapper ul li {
        margin: 6px
    }

    section.sec-10 {
        padding: 46px 0 45px
    }

    section.sec-2 {
        padding: 50px 0
    }

    .sec-heading ul li {
        font-size: 14px
    }

    section.sec-4 {
        padding: 50px 0
    }

    .process-number img.dot {
        display: none
    }

    .process-box {
        gap: 22px
    }

    .process-card h4 {
        font-size: 20px
    }

    img.dnone {
        display: none
    }

    .service-card {
        flex-direction: column
    }

    .service-card h3 {
        font-size: 22px
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 10px
    }

    .partners img {
        display: none
    }

    .free-consultation-image {
        display: none
    }

    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 1.3
    }

    .mmpopup .popup-content {
        padding: 32px 22px
    }

    .pckg .upper .price .amount {
        font-size: 40px
    }

    .process-box:before {
        display: none
    }

    section.sec-8 {
        background-position: inherit;
        background-size: cover
    }

    .answer p {
        font-size: 14px;
        line-height: 22px
    }

    .copyright a,.copyright p {
        text-align: center
    }

    ul.footer-links {
        justify-content: center
    }
}

@media only screen and (min-width : 280px) and (max-width :767px) {
    header {
        padding:1rem 0
    }

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

    span.sub-heading {
        margin-bottom: 12px;
        font-size: 14px
    }

    h1.banner-heading {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 10px
    }

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

    .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: 14px;
        line-height: 26px;
        opacity: 1
    }

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

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

    .header-wrapper {
        padding: 0
    }

    br {
        display: none
    }

    .sec-heading h3 {
        font-size: 14px;
        line-height: 22px
    }

    .trusted-logos.slick-initialized.slick-slider {
        margin: 16px 0
    }

    section.sec-3 {
        padding: 56px 0 85px;
        margin: 20px 0 0;
        background-position: top
    }

    .process-number {
        font-size: 30px;
        margin-top: 0
    }

    .process-card {
        margin-top: -38px
    }

    .process-card {
        padding: 15px
    }

    .process-card p {
        font-size: 14px
    }

    .accordion-list li {
        padding: 14px;
        border-radius: 15px
    }

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

    section.sec-13 {
        padding: 50px 0 10px
    }

    ul.contact-detail {
        margin: 16px 0 10px;
        padding: 0
    }

    .contact-detail li {
        width: 100%;
        margin-bottom: 10px
    }

    .footer-sec p {
        padding: 10px 0;
        font-size: 13px;
        line-height: 22px;
        max-width: 100%
    }

    .footer-hdng h4 {
        margin-bottom: 8px
    }

    .main-header {
        padding-top: 0
    }

    .f-menu li {
        line-height: 1.5
    }

    .service-menu li {
        line-height: 1.5
    }

    footer {
        padding: 30px 0 0
    }

    .copyright {
        padding: 8px
    }

    .pckg-wrapper {
        flex-direction: column
    }

    .pckg .upper {
        border-right: 0;
        padding: 25px 20px 20px;
        width: auto
    }

    .pckg .bottom {
        padding: 16px 20px 26px
    }

    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px
    }

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

    .forcall-btn {
        flex-direction: column;
        gap: 4px
    }

    .pckg-btn {
        padding: 10px;
        flex-direction: column;
        gap: 1rem
    }

    .pckg-btn:before {
        display: none
    }

    .pckg .btn-wrap a {
        width: auto
    }

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

    ul.overview-nav li {
        margin-bottom: 0
    }

    ul.overview-nav li.active a {
        border: 1px solid var(--primary);
        border-bottom: 1px solid var(--primary);
        font-weight: 400
    }

    ul.overview-nav a {
        padding: 12px 14px;
        font-size: 14px
    }

    ul.overview-nav {
        border-bottom: 0
    }

    ul.overview-nav {
        gap: 10px;
        margin: 24px 0
    }

    .sec-heading h6 {
        font-size: 20px;
        line-height: 26px
    }

    .contact-wrapper {
        flex-direction: column
    }

    .terms p {
        margin-bottom: 1rem;
        font-size: 14px
    }

    .terms h4 {
        font-size: 20px;
        margin: 2rem 0 1rem
    }

    section.terms-sec {
        padding: 1rem 0
    }

    .error-text {
        font-size: 50px;
        line-height: 22px;
        margin-bottom: 1rem
    }

    .error-heading {
        font-size: 30px;
        line-height: 40px
    }

    .thankyou-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 8px
    }

    .thankyou-page {
        padding: 60px 0 60px
    }

    .banner-content:before,.mainBanner:before {
        display: none
    }

    .trusted-wrapper {
        padding: 0 0;
        margin-top: 0
    }

    ul.menu.btns {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center
    }

    ul.menu.btns li {
        padding: 0
    }

    ul.menu.btns li a {
        font-size: 11px;
        padding: 5px 5px!important
    }

    .menuWrap2 {
        justify-content: center
    }

    .partners {
        flex-direction: column
    }

    section {
        padding: 2rem 0;
        position: relative
    }

    .process-box-wrapper:before {
        display: none
    }

    .cta-image {
        display: none
    }

    .sec-heading h5 {
        font-size: 26px;
        line-height: 22px;
        padding: 12px 0 0
    }

    section.cta-sec {
        background-size: auto;
        padding: 32px 0
    }

    section.free-consultation {
        padding: 45px 0 50px
    }

    ul#counter {
        flex-direction: row;
        margin: 0 0 16px;
        gap: 0
    }

    ul#counter li .counter>div {
        font-size: 30px
    }

    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 26px
    }

    .trustpilot-wrap {
        flex-direction: column;
        gap: 8px
    }

    .rating-wrapper ul li {
        margin: 6px
    }

    section.sec-10 {
        padding: 46px 0 45px
    }

    section.sec-2 {
        padding: 0 0 50px
    }

    .sec-heading ul li {
        font-size: 14px
    }

    section.sec-4 {
        padding: 50px 0
    }

    .process-number img.dot {
        display: none
    }

    .process-box {
        gap: 0
    }

    .process-card h4 {
        font-size: 20px
    }

    img.dnone {
        display: none
    }

    .service-card {
        flex-direction: column
    }

    .service-card h3 {
        font-size: 22px
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 10px
    }

    ul#counter li {
        padding: 18px 6px;
        border-bottom: 0
    }

    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 1.3
    }

    .mmpopup .popup-content {
        padding: 32px 22px
    }

    .pckg .upper .price .amount {
        font-size: 40px
    }

    .process-box:before {
        display: none
    }

    section.sec-8 {
        background-position: inherit;
        background-size: cover
    }

    .answer p {
        font-size: 14px;
        line-height: 22px
    }

    .copyright a,.copyright p {
        text-align: center
    }

    ul.footer-links {
        justify-content: center
    }

    .mainBanner {
        background-position: left
    }

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

    ul.menu.btns {
        margin: 0 0 10px
    }

    .btn-wrap .theme-btn {
        font-size: 14px;
        padding: 5px 5px 5px 20px
    }

    .trusted-rating span {
        font-size: 18px
    }

    .process-box.ext {
        border: none
    }
    
    ul.menu {
    margin-left: 0;
}

}

.process-box.ext .process-number img {
    position: relative;
    z-index: 0;
    right: -.5rem
}

.trusted-rating span a {
    color: #fff!important
}
