/*Main Css */


@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --primary: #FFB700;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Bai Jamjuree" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #FFB700;
    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: #FFB700;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 20px 20px 20px 20px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #D1D5DB;
    background: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    /* border-radius: 6px; */
    margin-bottom: 1.5rem;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #303A42;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
}
ul.accordion-list li h3:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #303A42;
    transition: all 0.3s ease-in-out;
    font-size: 32px;
    font-weight: 300;
    top: 0;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f068";
}
.answer p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
}
/* Accordian */

.sticky-call a {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600 !important;
    border: 0px;
    cursor: pointer;
    color: #fff;
    padding: 10px 0px 10px 0px;
    font-size: 18px;
    margin: 0 0 0 19px;
    border-radius: 0;
    /* -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    -ms-transition: all .1s linear;
    transition: all .1s linear; */
    background: #95c047;
    float: none;
    left: 0;
    right: 0;
    margin: auto;
    /* -webkit-animation: flash linear 0.8s infinite; */
    /* animation: flash linear 0.8s infinite; */
    z-index: 1000;
    animation-name: backgroundColorPalette;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}
@keyframes backgroundColorPalette {
    0% {
       background: var(--primary);
   }

   50% {
       background: #000;
   }

   100% {
       background: var(--primary);
   }
}
html{
    overflow-x: hidden;
}


body {
    font-family: var(--font-body);
    /* overflow-x: hidden; */
    font-size: 16px;
    line-height: 1;
    color: #555555;
}
body.inner-header {
    /* padding-top: 100px; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
    color: #06111B;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}


/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}


/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}


/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/
header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: sticky;
    background: #0B0B0B;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}
header.sticky{
    background: #0b0b0b;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
    /* max-width: 230px; */
}
.logo img {
    display: block;
    /* max-width: 160px; */
}


/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
    top: 0;
}
.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}


/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--white);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: var(--primary);
    color: #000 !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500 !important;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}


@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}


/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 65px 0 54px;
}
h1.banner-heading {
    font-size: 55px;
    line-height: 62px;
    margin-bottom: 20px;
}
span.sub-heading {
    font-size: 21px;
    line-height: 50px;
    color: #fff;
    font-weight: 600;
}
p.banner-text {
    font-weight: 500;
    font-size: 17px;
    line-height: 30px;
    /* margin-bottom: 2rem; */
    /* color: #5F5F5F; */
}
.banner-img {
    text-align: end;
    margin-right: -28px;
}
.banner-content ul li {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}
.banner-content ul li i.fa-regular.fa-check {
    color: var(--primary);
    margin-right: 12px;
}
.banner-content ul {
    padding: 20px 0;
}
.btn-wrap .theme-btn.bordered i.fa-regular.fa-message {
    color: var(--primary);
}
.rating-text p {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 10px 0;
}


/* Container for the banner image */
.banner-img {
    position: relative;
    overflow: hidden;
    width: 100%; /* Adjust width as needed */
    border-radius: 15px; /* Optional: rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Optional: shadow effect */
}

/* Image animation */
.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: float 5s ease-in-out infinite; /* Apply the float animation */
}

/* Keyframes for the up-down movement */
@keyframes float {
    0% {
        transform: translateY(0); /* Start at the original position */
    }
    50% {
        transform: translateY(-15px); /* Move 15px up */
    }
    100% {
        transform: translateY(0); /* Return to the original position */
    }
}



.sec-1 {
    background: #0b0b0b;
    padding: 20px 0;
}

/* section-3 */
.sec-heading h2 span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
    font-family: 'Libre Baskerville';
}
.portfolio-card {
    border-radius: 12px;
    border: 1px solid #0b0b0b73;
    overflow: hidden;
    transition: 0.3s ease;
    margin: 15px 0;
}
.portfolio-card .port-detail {
    padding: 16px;
}
.portfolio-card .port-detail span {
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 8px;
    font-size: 12px;
    background: var(
    --primary);
    color: #000;
    font-weight: 600;
}
.portfolio-card .port-detail h3 {
    /* color: #fff; */
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.48px;
    padding: 14px 0;
}
.portfolio-card .port-detail p {
    font-size: 14px;
    /* color: #fff; */
    font-weight: 300;
}
.port-category {
    display: flex;
    align-items: center;
    gap: 8px;
}
.portfolio-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease; /* Smooth animation for transform and filter */
}
.portfolio-image:hover img {
    transform: scale(1.1) rotate(2deg); /* Slight zoom and rotate */
    filter: brightness(1.1); /* Optional: Increase brightness */
}
.portfolio-card.marg-0 {
    margin: 0;
}
.portfolio-card.marg-0:hover {
    transform: scale(1.01);
}

.portfolio-image {
    overflow: hidden;
}
.port {
    width: 100%;
}
.port-card{
    display: inline-block;
    transition: 1s cubic-bezier(.51, .92, .27, .96) !important;
    box-shadow: -1px -2px 15px -3px rgb(0 0 0 / 16%);
    border-radius: 6px;
    /* margin: 0 4px; */
    height: 222px;
    overflow: hidden;
    background-size: cover;
    width: 100%;
    /* border: 1px solid var(--primary); */
}
.port-card:hover {
    background-position: 100%;
    transition: 3s !important;
    
}
.portfolio-slider .slick-slide {
    margin: 0 8px;
}
section.sec-2 {
    background: #fff;
}
.portfolio-card:hover {
    background: #000;
    box-shadow: 4px 4px var(--primary);
    transform: scale(1.06);
}
.portfolio-card:hover h3, .portfolio-card:hover p {
    color: #fff;
}
/* section-3 */

/* packages  */
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem
}
.pkg-list .g-2 {
    grid-template-columns: repeat(2, 1fr);
}
.pkg-list .d2 .pckg {
    border: 1px solid #E5E7EB;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.pkg-list .d2 .pckg .upper {
    text-align: center;
}
.pkg-list .d2 .pckg .upper .price {
    justify-content: center;
}
.pkg-list .d2 .pckg .upper .title {
    font-size: 24px;
    line-height: 24px;
}
.pkg-list .d2 .pckg .upper .price .amount {
    font-weight: 800;
    font-size: 70px;
    line-height: 85px;
}
.pkg-list .d2 .pckg .bottom p {
    font-size: 18px;
    line-height: 26px;
    color: #6B7280;
}
.pckg.d2{
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.pckg.d2 .upper .title {
    font-size: 24px;
    line-height: 24px;
}
.pckg.d2 .upper {
    text-align: center;
}
.pckg.d2 .upper .price {
    justify-content: center;
}
.pckg.d2 .upper .price .amount {
    font-size: 70px;
    line-height: 85px;
}
.pckg.d2 .bottom .hdng {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #525AEC;
    margin-bottom: 1rem;
}
.pckg.d2 .bottom p {
    color: #6B7280;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 1rem;
}
.pckg {
    background: #fff;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0px 2px 4px -1px #0000000F;
    box-shadow: 0px 4px 6px -1px #0000001A;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}
.pckg .btn-wrap a{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper, .pckg .bottom {
    padding: 1.5rem;
}
.pckg .upper .title {
    font-size: 32px;
    line-height: 30px;
    margin-bottom: 1rem;
}
.pckg .upper .starting-in {
    font-size: 14px;
    /* line-height: 20px; */
    color: #06111B;
    font-weight: 300;
    max-width: 79%;
}
.pckg .upper p {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    margin-bottom: 1.5rem;
    min-height: 40px;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2rem 0;
}
.pckg .upper .price .amount {
    font-weight: 700;
    font-size: 56px;
    line-height: 40px;
    color: #000000;
    font-family: 'Bai Jamjuree';
}
.pckg .upper .price .uspto {
    font-weight: 300;
    font-size: 12px;
    line-height: 24px;
    color: #06111B;
}
.pckg .upper {
    border-bottom: 1px solid #E5E7EB;
    position: relative;
}
.pckg .bottom .includes {
    letter-spacing: 0.025em;
    /* text-transform: uppercase; */
    color: #06111B;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
}
.pckg .bottom ul li {
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #06111B;
    position: relative;
    display: flex;
}
.pckg .bottom ul {
    margin: 1rem 0 0;
    max-height: 220px;
    overflow-y: auto;
    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: var(--green);
    margin-right: 12px;
}
.pckg h4 {
    background: #494085;
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 18px 0;
}
.pckg span.tag {
    position: absolute;
    top: 25px;
    right: 38%;
    font-size: 11px;
    color: #000;
    background: var(--primary);
    padding: 10px;
    border-radius: 50px;
    font-weight: 700;
}
.pckg span.off-price {
    font-size: 11px;
    color: #000;
    background: var(--primary);
    padding: 10px;
    border-radius: 50px;
    font-weight: 700;
}
.pckg .btn-wrap .theme-btn.bordered {
    border: 1px solid var(--primary);
}
.pckg:hover {
    background: #0b0b0b;
}
.pckg:hover .upper .title, 
.pckg:hover .upper .price .amount {
    color: var(--primary);
}
.pckg:hover .upper .starting-in, 
.pckg:hover .price .uspto, 
.pckg:hover .bottom .includes, 
.pckg:hover .bottom ul li, 
.pckg:hover .btn-wrap .theme-btn.bordered, .pckg:hover span.includes2 {
    color: #fff;
}
span.includes2 {
    padding: 0 0 20px;
    font-weight: 600;
}
img.tag {
    position: absolute;
    top: -46px;
    right: 10px;
    width: 28%;
}

/* packages */

/* Container and box styling */
.box {
    position: relative;
    width: 400px;
    height: 400px;
    background: #fff;
    overflow: hidden;
    border: 2px solid transparent; /* Transparent border */
    padding: 20px;
    transition: 0.5s ease;
    z-index: 0;
}

/* Content inside the box */
.box .content {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1; /* Make sure content is above the animation */
}

/* Span (border) setup */
.box span {
    position: absolute;
    display: block;
    background-color: transparent; /* Start as transparent */
}

/* Top border */
.box span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform-origin: left;
}

/* Right border */
.box span:nth-child(2) {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    transform-origin: top;
}

/* Bottom border */
.box span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform-origin: right;
}

/* Left border */
.box span:nth-child(4) {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    transform-origin: bottom;
}

/* Hover animation on the box */
.box:hover span:nth-child(1),
.box:hover span:nth-child(2),
.box:hover span:nth-child(3),
.box:hover span:nth-child(4) {
    background-color: #fac233; /* Change to yellow on hover */
}

.box:hover span:nth-child(1) {
    animation: animate-line 1s forwards;
}

.box:hover span:nth-child(2) {
    animation: animate-line 1s 0.25s forwards;
}

.box:hover span:nth-child(3) {
    animation: animate-line 1s 0.5s forwards;
}

.box:hover span:nth-child(4) {
    animation: animate-line 1s 0.75s forwards;
}

/* Keyframes for the animation */
@keyframes animate-line {
    0% {
        transform: scaleX(0) scaleY(0);
        background-color: transparent; /* Start transparent */
    }
    100% {
        transform: scaleX(1) scaleY(1);
        background-color: #fac233; /* Ends yellow */
    }
}

/* Headings and paragraph styles */
.content h2 {
    font-size: 26px;
    margin: 1rem 0;
    color: #06111B;
}

.content p {
    color: #575656;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.box:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.5s;
    pointer-events: none;
    background: #d6cece26;
  }
  
  .box:hover:before {
    left: -50%;
    transform: skewX(-5deg);
  }
  section.sec-3 {
    background: #F4F4F4;
}


/* service-card-section */
/* .service-card {
    box-shadow: 0px 2.62px 40.25px -1.75px #7A551C33;
    border-radius: 12.25px;
    text-align: center;
    padding: 20px;
    background: #ffffff;
    margin-bottom: 1.5rem;
} */
.service-card h3 {
    font-size: 20px;
    text-align: left;
    padding: 10px 0;
}
.service-card p {
    font-size: 14px;
    line-height: 21px;
    text-align: left;
}

.service-card {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform-origin: center;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.01); /* Increase the popup effect */
}
/* service-card-section */



section.sec-5 {
    background: #0D0E0E;
}
.sec-5 .sec-heading {
    margin-right: -98px;
}
.step-wrapper {
    background: #494085;
    padding: 20px 20px;
    border-radius: 8.96px;
    /* height: 78%; */
    position: relative;
    overflow: hidden;
}
.step-wrapper h3 {
    font-size: 40px;
    font-weight: 600;
    padding: 18px 0;
    line-height: 54px;
}
.step-wrapper p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 50px;
}
.step-wrapper .btn-wrap .theme-btn {
    padding: 13px 20px;
    font-size: 16px;
}
.sec-5 .sec-heading h2 {
    font-size: 45px;
}
.steps-card span {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}
.steps-card .step-text h4 {
    font-size: 22px;
    padding-bottom: 6px;
}
.steps-card {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #CBCBCB;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.steps-card .step-text p {
    font-size: 14px;
    line-height: 23px;
    font-weight: 300;
}
.step-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -54%;
    left: 0;
    height: 74%;
    width: 100%;
    background: #fff;
    border-radius: 50%;
}
.steps-card:last-child {
    border-bottom: 0;
}

.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,
.design-card-list-2 {
    position: relative;
    display: flex !important;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}
.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 50px;
    position: absolute;
    width: auto;
    height: 66px;
    bottom: 20px;
    z-index: 1;
    background: rgb(0 0 0 / 50%);
    border-radius: 25px;
    opacity: 0;
    transition: .5s ease;
}
.design-card-list li:hover .indusrtry-name,
.design-card-list-2 li:hover .indusrtry-name {
    opacity: 1;
}

ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
ul.overview-nav.d2 a {
    padding: 15px 18px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 5px;
    color: #333333;
}
ul.overview-nav.d2 li.active a {
    background: var(--primary);
    color: #000;
    border-color: var(--primary) !important;
}

/* Testimonials 2 */
/* .testi-slide {
    background: #fff;
    border-radius: 18px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0px 0px 0px 1.07px #12376914;
} */
.testi-slide {
    background-color: #fff;
    border-radius: 18px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease, transform 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1); /* Initial state */
    position: relative;
    overflow: visible;
    margin-bottom: 20px;
}

.testi-slide:hover {
    background-color: #ffc10729;
}
.testi-slide p {
    color: #111111;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}
.testi-slide.no-border {
    box-shadow: none;
}
.testi-slide.no-border p {
    color: #111111;
    font-size: 25px;
    line-height: 42px;
}
.testi-slide .client {
    /* margin-top: 1rem; */
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-slide .client .det .name {
    font-weight: 400;
    font-size: 14px;
    /* line-height: 39px; */
    color: #0C0C11;
    display: block;
}
.testi-slide .client .det .des {
    font-size: 14px;
    line-height: 21px;
    color: #666C7F;
}
/* Testimonials 2 */


/* section-7 */
section.sec-7 {
    background: #0D0E0E;
}
.step-box {
    width: 244px;
    height: 235px;
    position: relative;
    display: flex;
    cursor: pointer;
    color: #2c3e50;
    -webkit-transition: background 0.4s 0.5s;
    transition: background 0.4s 0.5s;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 2px dashed var(--primary);
    border-radius: 4px;
}
.step-box:hover {
    background: rgba(255, 255, 255, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.step-box h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #000;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -41px;
    z-index: 0;
} 
.step-box span {
    display: block;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    color: white;
}
.step-box p {
    color: #ffffff8a;
    text-align: center;
    line-height: 22px;
    font-size: 16px;
}
ul.number-line {
    display: inline-block;
    vertical-align: middle;
    margin-top: 32px;
}
ul.number-line li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    
}
/* section-7 */

/* -------------------------contact us-------------------------- */
section.sec-9 {
    background: #0E1C36;
}
.input-field1 label {
    padding-left: 10px;
    color: #ffffff;
    font-weight: 500;
    padding-bottom: 10px;
}
.input-field1 input, .input-field1 textarea, .input-field1 select {
    cursor: pointer;
    height: 60px;
    width: 100%;
    font-size: 14px;
    color: #fff;
    padding: 15px 14px;
    outline: none !important;
    /* text-transform: capitalize; */
    margin-bottom: 30px;
    /* box-shadow: 0 16px 24px 0 rgba(189, 196, 205, 0.13); */
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    border: 1px solid #FFB700;
}
.input-field1 textarea {
    height: 186px;
}
.send {
    text-align: center;
    /* padding-top: 35px; */
}
.input-field1 select option {
    color: #333333;
}
.send input[type="submit"] {
    height: 60px;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    /* width: 100%; */
    border: 0;
    padding: 12px 50px;
    border-radius: 6px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    background-color: var(--primary);
}
.details h5 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #202529;
}
.details a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.details {
    margin-bottom: 40px;
}
.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    height: 40px;
    width: 40px;
    background: #008576;
    border-radius: 50px;
    text-align: center;
}
.social-icons li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}
.details a i, .details p i {
    color: #008576;
    padding-right: 12px;
}
/* -------------------------contact us-------------------------- */


.sec-5 .sec4-cont ul {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    background-color: #0d0e0e;
}
.sec-5 .sec4-cont ul li {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 30px;
    padding: 30px 0;
    background-color: #0d0e0e;
    border-bottom: 1px solid #D4D4D4;
    position: sticky;
    top: 50px;
}
.sec-5 .sec4-cont ul li .sec4-contHd {
    flex: 0 0 45%;
}
.sec-5 .sec4-cont ul li .sec4-contHd span {
    position: relative;
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.16;
    display: inline-block;
}
.sec-5 .sec4-cont ul li .sec4-contHd h6 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.16;
    padding-top: 20px;
}
.sec-5 .sec4-cont ul li .sec4-contBody p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}
.sec-5 .sec4-cont ul li.last {
    border-bottom: none;
    padding-bottom: 0;
}
.sec-5 .sec4-left {
    position: sticky;
    top: 126px;
}
.step-wrapper .btn-wrap {
    margin-bottom: 80px;
}

/*guarantee section*/
.guarantee-bg {
    background: #0b0b0b;
    border-radius: 14px;
    padding: 4rem 6rem 2rem;
}
.guarantee-bg p.para {
    font-size: 22px;
    margin: 14px 0;
    line-height: 26px;
}
section.guarantee-sec {
    margin-top: 4rem;
}
.money-back-image {
    margin-top: -160px;
    margin-bottom: 26px;
}
.money-back-image {
    position: relative;
    display: inline-block;
}
.money-back-image img {
    /* width: 100px; */ /* Adjust as needed */
    height: auto;
}
/*guarantee section*/

  .expertSec {
    padding-bottom: 0;
}
.expertSec figure {
    margin-left: -4rem;
    width: 50rem;
}
.img-fluid {
    max-width: 80%;
    height: auto;
}
.boxOne {
    background: #fff;
    box-shadow: 0 0 30px #0000001f;
    border-radius: 50%;
    height: 270px;
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 1rem 0 1rem -7rem;
    text-align: center;
    animation: zoomOut 2s ease infinite;
  }
  @keyframes zoomOut {
    0%{
  transform: scale(1);
    }
    50%{
      transform: scale(1.06);
    }
    100%{
      transform: scale(1);
    }
  }
  .boxOne h3 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--theme-color);
    margin: 0;
  }
  
  .boxOne p {
    margin: 0;
    color: #000;
    line-height: 1.2;
  }
  
  .boxTwo h3 {
    font-size: 3rem;
    color: #000;
  }
  
  .boxTwo {
    background: #F2F2F2;
    border: 5px solid #fff;
    width: 180px;
    height: 180px;
    text-align: center;
    margin-left: auto;
  }
  
  
  .boxTwo p {
    font-size: 14px;
  }
  
  .boxthree {
    height: 220px;
    width: 220px;
    margin-left: -3rem;
  }
  
  .boxthree h3 {
    color: #000;
  }
ul.counterBox2 {
    padding: 0;
    margin: 0;
    list-style: none;
}
.expert-text h6 {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
}
.expert-text h4 {
    font-size: 3.45rem;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--black);
    padding: 20px 0;
}
.expert-text p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.67;
    margin-bottom: 1.5rem;
    color: #161616;
}
.container-padding{
    padding-left: 9%;
    padding-right: 9%;
}
section.sec-6 {
    background: #F2F2F2;
}




/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
}
.popupmain {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 935px;
    height: auto;
    max-width: 97%;
    max-height: 97%;
    margin: auto;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 25px;
    background: linear-gradient(285deg, #FF3D2E 26.03%, #394DB7 106.18%), #FFF;
    overflow-y: auto;
    padding: 30px 30px 30px 40px;
}
.mmpopup {
    text-align: center;
    background: #f8f8f8;
    padding: 45px 25px 25px;
    border-radius: 32px;
    margin-top: 16px;
}
.mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
}
.mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    overflow: hidden;
}
.mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
}
.mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
}
.mmpopup .centercont h4 span {
    color: #86cb92;
}
.mmpopup .centercont h4 span span {
    display: none;
}
.mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
}
.closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 100px;
}
.closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
}
.closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
}
.closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
}
.mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
}
.mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
}
.mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
}
.mmpopup .centercont ul li.last {
    padding-bottom: 0;
}
.mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
}
.mmpopup .centercont h4 {
    font-size: 35px;
    color: #0085ff;
}
.mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
}
.mmpopup .centercont h3 span {
    display: block;
    margin: 0 30px;
    /* font-size: 30px; */
    color: #000;
    /* font-family: 'CenturyGothic'; */
    font-weight: 700;
    /* line-height: 33px; */
    font-size: 36px;
    line-height: 120%;
    color: #3A3D40;
}
.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);
}

.popupmain .ppCont {
    position: relative;
    z-index: 1;
}
.popupmain .ppCont .ppTag {
    background-color: #000;
    border-radius: 20px;
    padding: 20px var(--ppTagWidthHalf) 20px 20px;
    position: relative;
    display: inline-block;
    width: calc(100% - 100px);
    height: var(--ppTagWidth);
    --ppTagWidth: 140px;
    --ppTagWidthHalf: calc((var(--ppTagWidth) / 1.7));
}
.popupmain .ppCont .ppCont-main {
    padding-right: 60px;
}
.popupmain .ppCont .ppTag span {
    width: var(--ppTagWidth);
    height: var(--ppTagWidth);
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(var(--ppTagWidth) / 2.2* -1);
    margin: auto;
    background-color: #E8CF1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    font-family: "Causten";
    font-size: 40px;
    font-weight: 700;
    line-height: 0.9;
}
.popupmain .ppCont .ppCont-main p {
    color: #FFF;
    /* font-family: "Causten"; */
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    padding: 15px 0 30px;
}
.popupmain .ppCont .ppCont-main ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 32px;
}
.popupmain .ppCont .ppCont-main ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: "Causten";
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}
.popupmain .ppCont .ppCont-main ul li i {
    color: #00B67A;
    font-size: 0.8rem;
}
.popupmain .ppCont .ppCont-main b {
    color: #FFF;
    /* font-family: "Causten"; */
    font-size: 18px;
    font-weight: 400;
    line-height: 1.11;
    padding-bottom: 30px;
    display: block;
}
.popupmain .ppCont .ppCont-main a {
    border-radius: 20px;
    background: #000;
    padding: 15px 30px;
    display: flex;
    gap: 12px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.23;
    text-wrap: nowrap;
}
.popupmain .ppCont .ppCont-main a i {
    font-size: 0.8em;
}
/* .deg90 {
    transform: rotate(90deg);
} */

.popupmain.popup-wid {
    width: 615px;
}


/* popup */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 55px;
    border-radius: 5px;
    background: #eeeeee;
}

.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #eeeeee;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}

.newcountrycode .phone-field {
    width: 100%;
}

.newcountrycode input {
    border: 0;
}

.newcountrycode.contact-dd input {
    padding: unset;
    border: unset;
}

/* Country Code */




/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 50px;
    line-height: 48px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #5F5F5F;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0 0 1rem;
}
.btn-wrap .theme-btn {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    font-size: 20px;
    border-radius: 50px;
    font-weight: var(--font-medium);
    border: 2px solid var(--primary);
    transition: .5s ease;
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
    border: 0;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
p.text-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}
/* Theme Buttons */

/* footer */
footer {
    background: #0B0B0B;
    padding: 1.5rem 0 3rem;
}
.copyright {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
    margin: 1rem 0 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 14px;
    font-weight: 300;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
p.small-text {
    padding-top: 10px;
    line-height: 18px;
}
/* footer */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */
.terms .roman {
    /* list-style: upper-roman; */
}
.terms ul {
    /* padding-left: 40px; */
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
ul.list-ul {
    list-style: disc;
    margin-left: 24px;
    line-height: 16px;
}
.mainBanner.m2 {
    margin-top: 3rem;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 26px;
    margin: 2rem 0 1rem;
}
.terms p {
    margin-bottom: 1rem;
}
.sticky-call {
    display: none;
}
/* terms */

/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}
ul#counter li .counter>div {
    font-weight: 900;
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 0rem;
    flex-shrink: 0;
    font-family: 'Henriette';
    line-height: 40px;
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 1rem;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--primary);
}
ul#counter li .counter span.text {
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 300;
    color: #021410;
}
/* -------------------------counter CSS------------------------  */
ul.award-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
    text-align: center;
}





















@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    body {
        overflow-x: hidden;
    }
    ul.menu.btns {
        display: block;
        margin: 0;
        display: inline-block;
        vertical-align: middle;
    }
    ul.menu.btns li {
        border-bottom: 0;
        display: inline-block;
        vertical-align: middle;
    }
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 10px 14px !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: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .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; */
        /* margin: 0 auto; */
        /* text-align: center; */
    }
    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: #fff;
        width: auto;
        text-align: center;
        margin: 0;
        display: flex;
        justify-content: center;
        padding: 6px;
        font-size: 11px;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    .testi-slide p {
        font-size: 14px;
        line-height: 18px;
    }
    .testi-slide {
        padding: 14px;
    }
    .testi-slide.no-border p {
        font-size: 20px;
        line-height: 26px;
    }
    .accordion-list li h3 {
        font-size: 20px;
        line-height: 24px;
        max-width: 90%;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
        padding: 15px 18px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

/* 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 */
.banner-img {
    display: none;
}
.box {
    width: auto;
    height: 100%;
    padding: 0;
}
.boxOne {
    height: 120px;
    width: 120px;
}
.boxOne h3 {
    font-size: 16px;
}
ul.counterBox2 {
    margin-left: -40px;
}
.img-fluid {
    max-width: 46%;
    height: auto;
}
.expert-text h4 {
    font-size: 31px;
}
ul.number-line {
    text-align: center;
}
.btn-wrap .theme-btn {
    font-size: 14px;
    padding: 10px 10px;
}
.box .content {
    padding: 15px;
}
.content h2 {
    font-size: 22px;
}
.content p {
    font-size: 13px;
    line-height: 20px;
}
.money-back-image img {
    width: 150px; /* Adjust as needed */
    height: auto;
}
.sec-heading h2 {
    font-size: 36px;
}
.guarantee-bg p.para {
    font-size: 16px;
}
.guarantee-bg {
    padding: 3rem 1rem 1rem;
}


















}
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
/* Styles */

.pkg-list {
    grid-template-columns: repeat(2, 1fr);
}
header{
    padding: 1rem 0;
}
.banner-content {
    padding: 50px 0 45px;
}
span.sub-heading {
    margin-bottom: 0rem;
    font-size: 14px;
}
h1.banner-heading {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 1rem;
}

p.banner-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 25px;
}
.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;
}
.banner-content ul li {
    font-size: 14px;
}
.rating-text p {
    font-size: 13px;
}
section {
    padding: 3rem 0;
    position: relative;
}
.pckg span.tag {
    right: 2%;
}
.box {
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    padding: 0;
}
.logo img {
    display: block;
    max-width: 160px;
}
.guarantee-bg {
    padding: 2rem 2rem 1rem;
}
.guarantee-bg p.para {
    font-size: 14px;
    line-height: 22px;
}
.sec-5 .sec-heading h2 {
    font-size: 32px;
}
.sec-5 .sec-heading {
    margin-right: 0;
}
.img-fluid {
    max-width: 42%;
    height: auto;
}
.boxOne {
    margin: 2rem 0;
}
.expert-text h6 {
    font-size: 16px;
}
.expert-text h4 {
    font-size: 26px;
}
.expert-text p {
    font-size: 14px;
}
.testi-slide.no-border p {
    font-size: 20px;
    line-height: 28px;
}
.testi-slide p {
    font-size: 14px;
    line-height: 22px;
}
.step-box {
    width: 100%;
    height: auto;
    padding: 40px;
    margin-bottom: 1rem;
}
.step-box h3 {
    margin-top: 0;
    margin-bottom: 24px;
}
.step-box svg {
    position: relative;
}
ul.number-line {
    text-align: center;
}
.step-box span {
    padding-top: 1rem;
}
ul.number-line li {
    margin-left: 0px;
}
.accordion-list li h3 {
    font-size: 18px;
    line-height: 22px;
    max-width: 87%;
}
ul.accordion-list li h3:after {
    font-size: 20px;
}
.boxOne {
    height: 120px;
    width: 120px;
}
.boxOne h3 {
    font-size: 16px;
}
ul.counterBox2 {
    margin-left: -40px;
}
.ppTag h4 {
    font-size: 18px !important;
}
.popupmain .ppCont .ppTag span {
    width: 60px;
    height: 60px;
    font-size: 22px;
}
.popupmain .ppCont .ppTag {
    --ppTagWidth: 60px;
}
.popupmain{
    padding: 12px;
}
.popupmain .ppCont .ppCont-main p {
    font-size: 14px;
    padding: 4px 0 12px;
}
.popupmain .ppCont .ppCont-main ul li {
    font-size: 16px;
}
.popupmain .ppCont .ppCont-main ul {
    padding-bottom: 10px;
}
.popupmain .ppCont .ppCont-main b {
    font-weight: 400;
    padding-bottom: 10px;
    font-size: 16px;
}
.popupmain .ppCont .ppCont-main a {
    padding: 10px 18px;
    font-size: 16px;
    justify-content: center;
}
.mmpopup {
    padding: 12px;
}
.mmpopup .centercont h3 span {
    font-size: 25px;
    line-height: 20px;
}
.mmpopup .centercont p {
    font-size: 16px;
    line-height: 15px;
}
.mmpopup .fld-input {
    height: 52px;
    margin-bottom: 8px;
}
.newcountrycode {
    height: 52px;
}
.fld-btn button {
    font-size: 16px;
    height: 60px;
}
.mmpopup .formpop {
    margin: 24px auto 0;
}
.box .content {
    padding: 20px;
}
.money-back-image img {
    width: 140px; /* Adjust as needed */
}
.sec-4 .row {
    justify-content: center;
}
.btn-wrap .theme-btn {
    font-size: 14px;
    padding: 10px 10px;
}
.box .content {
    padding: 15px;
}
.content h2 {
    font-size: 22px;
}
.content p {
    font-size: 13px;
    line-height: 20px;
}
.money-back-image img {
    width: 150px; /* Adjust as needed */
    height: auto;
}
.sec-heading h2 {
    font-size: 36px;
}
.guarantee-bg p.para {
    font-size: 16px;
}
.guarantee-bg {
    padding: 3rem 1rem 1rem;
}
ul#counter li .counter span.text {
    font-size: 14px;
}




}


/* iPhone 6-8 Plus */
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : landscape) {
/* Styles */
}



/* iPhone 6-8  */
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : landscape) {
/* Styles */
}



/* Android (Pixel 2) */
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : landscape) {
/* Styles */
}

/* Iphone X */
@media only screen
and (min-width : 375px)
and (max-width : 734px)
and (orientation : portrait) {

}
@media only screen
and (min-width : 320px)
and (max-width : 767px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 50px 0 45px;
    }
    span.sub-heading {
        margin-bottom: 0rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 30px;
        line-height: 40px;
        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;
    }
    .banner-content ul li {
        font-size: 14px;
    }
    .rating-text p {
        font-size: 12px;
    }
    .rating-text p img {
        max-width: 16%;
    }
    section {
        padding: 3rem 0;
        position: relative;
    }
    .pckg span.tag {
        right: 2%;
    }
    .box {
        width: auto;
        height: auto;
        margin-bottom: 1rem;
        padding: 0;
    }
    .logo img {
        display: block;
        max-width: 160px;
    }
    .guarantee-bg {
        padding: 2rem 2rem 1rem;
    }
    .guarantee-bg p.para {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-5 .sec-heading h2 {
        font-size: 32px;
    }
    .sec-5 .sec-heading {
        margin-right: 0;
    }
    img.img-fluid {
        display: none;
    }
    .boxOne {
        margin: 1rem 0;
    }
    .expert-text h6 {
        font-size: 16px;
    }
    .expert-text h4 {
        font-size: 26px;
    }
    .expert-text p {
        font-size: 14px;
    }
    .testi-slide.no-border p {
        font-size: 20px;
        line-height: 28px;
    }
    .testi-slide p {
        font-size: 14px;
        line-height: 22px;
    }
    .step-box {
        width: 100%;
        height: auto;
        padding: 40px;
        margin-bottom: 1rem;
    }
    .step-box h3 {
        margin-top: 0;
        margin-bottom: 24px;
    }
    .step-box svg {
        position: relative;
    }
    ul.number-line {
        text-align: center;
    }
    .step-box span {
        padding-top: 1rem;
    }
    ul.number-line li {
        margin-left: 0px;
        width: 100%;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 87%;
    }
    ul.accordion-list li h3:after {
        font-size: 20px;
    }
    .ppTag h4 {
        font-size: 18px !important;
    }
    .popupmain .ppCont .ppTag span {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    .popupmain .ppCont .ppTag {
        --ppTagWidth: 60px;
    }
    .popupmain{
        padding: 12px;
    }
    .popupmain .ppCont .ppCont-main p {
        font-size: 14px;
        padding: 4px 0 12px;
    }
    .popupmain .ppCont .ppCont-main ul li {
        font-size: 14px;
    }
    .popupmain .ppCont .ppCont-main ul {
        padding-bottom: 10px;
    }
    .popupmain .ppCont .ppCont-main b {
        font-weight: 400;
        padding-bottom: 10px;
        font-size: 12px;
    }
    .popupmain .ppCont .ppCont-main a {
        padding: 10px 18px;
        font-size: 16px;
        justify-content: center;
    }
    .mmpopup {
        padding: 12px;
    }
    .mmpopup .centercont h3 span {
        font-size: 25px;
        line-height: 20px;
    }
    .mmpopup .centercont p {
        font-size: 12px;
        line-height: 15px;
    }
    .mmpopup .fld-input {
        height: 50px;
        margin-bottom: 8px;
    }
    .newcountrycode {
        height: 50px;
    }
    .fld-btn button {
        font-size: 14px;
        height: 50px;
    }
    .mmpopup .formpop {
        margin: 24px auto 0;
    }
    p.text-rating {
        font-size: 12px;
    }
    p.text-rating img {
        max-width: 16%;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .mainBanner.m2 {
        margin-top: 2rem;
    }
    .terms h4 {
        font-size: 20px;
        margin: 2rem 0 1rem;
    }
    .terms p {
        font-size: 14px;
    }
    ul.list-ul li {
        font-size: 14px;
    }
    .sticky-call {
        display: block;
    }
    .sticky-call {
        display: block;
    }
    ul.overview-nav.d2 a {
        padding: 10px 10px;
        font-size: 12px;
    }
    ul.overview-nav.d2 {
        gap: 8px;
        margin-bottom: 22px;
    }
    .pckg .upper .price .amount {
        font-size: 40px;
        line-height: 20px;
    }
    .money-back-image img {
        width: 130px; /* Adjust as needed */
        height: auto;
    }
    .boxOne {
        height: 140px;
        width: 140px;
    }
    .boxOne h3 {
        font-size: 1.5rem;
    }
    .boxTwo {
        width: 140px;
        height: 140px;
        margin-left: 100px;
    }
    .boxTwo h3 {
       font-size: 1rem;
    }
    .boxthree {
        height: 140px;
        width: 140px;
        margin-left: 0;
    }
    .boxthree h3 {
    font-size: 1rem;
    }
      
  .main-header {
    text-align: center;
}
ul.award-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 3rem 0;
}
ul#counter {
    display: block;
}

ul#counter li {
    border-right: 0;
}







  

}





.pckg-disclaimer {
    font-size: 12px !important;
    line-height: 1.5 !important;
    padding: 10px 0 0 !important;
    text-align: center !important;
}

.pckg:hover .pckg-disclaimer{
    color: #fff;
}